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
/// Adds an entry using the specified values to the given stream key.
2504
+
/// If key does not exist, a new key holding a stream is created.
2505
+
/// The command returns the ID of the newly created stream entry.
2506
+
/// </summary>
2507
+
/// <param name="key">The key of the stream.</param>
2508
+
/// <param name="streamField">The field name for the stream entry.</param>
2509
+
/// <param name="streamValue">The value to set in the stream entry.</param>
2510
+
/// <param name="messageId">The ID to assign to the stream entry, defaults to an auto-generated ID ("*").</param>
2511
+
/// <param name="maxLength">The maximum length of the stream.</param>
2512
+
/// <param name="useApproximateMaxLength">If true, the "~" argument is used to allow the stream to exceed max length by a small number. This improves performance when removing messages.</param>
2513
+
/// <param name="limit">Specifies the maximal count of entries that will be evicted.</param>
2514
+
/// <param name="deleteMode">Determines how stream trimming should be performed.</param>
2515
+
/// <param name="flags">The flags to use for this operation.</param>
2516
+
/// <returns>The ID of the newly created message.</returns>
/// Adds an entry using the specified values to the given stream key.
2524
+
/// If key does not exist, a new key holding a stream is created.
2525
+
/// The command returns the ID of the newly created stream entry.
2526
+
/// </summary>
2527
+
/// <param name="key">The key of the stream.</param>
2528
+
/// <param name="streamPairs">The fields and their associated values to set in the stream entry.</param>
2529
+
/// <param name="messageId">The ID to assign to the stream entry, defaults to an auto-generated ID ("*").</param>
2530
+
/// <param name="maxLength">The maximum length of the stream.</param>
2531
+
/// <param name="useApproximateMaxLength">If true, the "~" argument is used to allow the stream to exceed max length by a small number. This improves performance when removing messages.</param>
2532
+
/// <param name="limit">Specifies the maximal count of entries that will be evicted.</param>
2533
+
/// <param name="deleteMode">Determines how stream trimming should be performed.</param>
2534
+
/// <param name="flags">The flags to use for this operation.</param>
2535
+
/// <returns>The ID of the newly created message.</returns>
0 commit comments