Skip to content

Commit 87c0b85

Browse files
committed
Fix table warning
1 parent e42e5eb commit 87c0b85

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

articles/azure-functions/functions-bindings-cache-trigger-redislist.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -258,11 +258,11 @@ From `function.json`, here's the binding data:
258258

259259
| Parameter | Description | Required | Default |
260260
|---------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------:|--------:|
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 | |
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 | |
262262
| `Key` | Key to read from. This field can be resolved using `INameResolver`. | Yes | |
263263
| `PollingIntervalInMs` | How often to poll Redis in milliseconds. | Optional | `1000` |
264264
| `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` |
266266
| `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` |
267267

268268
::: zone-end
@@ -307,16 +307,6 @@ See the Example section for complete examples.
307307

308308
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.
309309

310-
<!-- ::: zone pivot="
311-
312-
| Type | Description |
313-
|------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
314-
| [`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-
320310
::: zone pivot="programming-language-csharp,programming-language-java,programming-language-javascript,programming-language-powershell,programming-language-python"
321311

322312
| Type | Description |

0 commit comments

Comments
 (0)