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
|`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 ||
261
+
|`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 ||
262
262
|`Key`| Key to read from. This field can be resolved using `INameResolver`. | Yes ||
263
263
|`PollingIntervalInMs`| How often to poll Redis in milliseconds. | Optional |`1000`|
264
264
|`MessagesPerWorker`| How many messages each functions instance should process. Used to determine how many instances the function should scale to. | Optional |`100`|
265
-
|`Count`| Number of entries to pop from Redis at one time. Entries are processed in parallel. Only supported on Redis 6.2+ using the `COUNT` argument in [`LPOP`](https://redis.io/commands/lpop/) and [`RPOP`](https://redis.io/commands/rpop/). | Optional |`10`|
265
+
|`Count`| Number of entries to pop from Redis at one time. Entries are processed in parallel. Only supported on Redis 6.2+ using the `COUNT` argument in [`LPOP`](https://redis.io/commands/lpop/) and [`RPOP`](https://redis.io/commands/rpop/). | Optional |`10`|
266
266
|`ListPopFromBeginning`| Determines whether to pop entries from the beginning using [`LPOP`](https://redis.io/commands/lpop/), or to pop entries from the end using [`RPOP`](https://redis.io/commands/rpop/). | Optional |`true`|
267
267
268
268
::: zone-end
@@ -307,16 +307,6 @@ See the Example section for complete examples.
307
307
308
308
The `RedisListTrigger` pops new elements from a list and surfaces those entries to the function. The trigger polls Redis at a configurable fixed interval, and uses [`LPOP`](https://redis.io/commands/lpop/) and [`RPOP`](https://redis.io/commands/rpop/) to pop entries from the lists.
| [`StackExchange.Redis.RedisValue`](https://github.com/StackExchange/StackExchange.Redis/blob/main/src/StackExchange.Redis/RedisValue.cs) | `string`, `byte[]`, `ReadOnlyMemory<byte>`: The entry from the list. |
315
-
| `Custom` | The trigger uses Json.NET serialization to map the message from the channel from a `string` to a custom type. |
316
-
317
-
::: zone-end
318
-
-->
319
-
320
310
::: zone pivot="programming-language-csharp,programming-language-java,programming-language-javascript,programming-language-powershell,programming-language-python"
0 commit comments