You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Azure Cache for Redis output binding for Azure Functions
@@ -40,45 +40,48 @@ The following example shows a pub/sub trigger on the set event with an output bi
40
40
>
41
41
>For .NET functions, using the _isolated worker_ model is recommended over the _in-process_ model. For a comparison of the _in-process_ and _isolated worker_ models, see differences between the _isolated worker_ model and the _in-process_ model for .NET on Azure Functions.
|`type`| Trigger type. For the pub sub trigger, the type is `redisPubSubTrigger`. | Yes ||
526
-
|`connection`| The name of the [application setting](functions-how-to-use-azure-function-app-settings.md#settings) that contains the cache connection string, such as: `<cacheName>.redis.cache.windows.net:6380,password...`| Yes ||
527
-
|`channel`| Name of the pub sub channel that is being subscribed to | Yes ||
528
-
|`name`| Name of the variable holding the value returned by the function. | Yes ||
|`type`| Trigger type. For the pub sub trigger, the type is `redisPubSubTrigger`. | Yes ||
541
+
|`connection`| The name of the [application setting](functions-how-to-use-azure-function-app-settings.md#settings) that contains the cache connection string, such as: `<cacheName>.redis.cache.windows.net:6380,password...`| Yes ||
542
+
|`channel`| Name of the pub sub channel that is being subscribed to. | Yes ||
543
+
|`pattern`| A boolean to indicate the given channel uses pattern mathching. If `pattern` is true, then the channel is treated like a _glob-style_ pattern instead of as a literal. | Yes ||
544
+
|`name`| Name of the variable holding the value returned by the function. | Yes ||
0 commit comments