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
* Support ZADD INCR; fix#3069
* PR number in release note
* use high bits of enum for CH/INCR
* LoggerTests: synchronize over the SB (CI race condition, rare)
* CI stability: `VectorSetAdd_WithEverything` - disambiguate test key
* VADD: clarify where CI is failing
* CI: stabilize GC test
* avoid m02
* more tools to inlvestigate weird VADD break on CI
* unused directive
* unused extern
* more VADD investigation
* move FP32 logic to the request level
* giving up for now; logging separately
* note ticket number
- Update experimental `GCRA` APIs and wire protocol terminology from "requests" to "tokens", to match server change ([#3051 by @mgravell](https://github.com/StackExchange/StackExchange.Redis/pull/3051))
14
14
- Add experimental `Aggregate.Count` support for sorted-set combination operations against Redis 8.8 ([#3059 by @mgravell](https://github.com/StackExchange/StackExchange.Redis/pull/3059))
15
+
- Add `ValueCondition` overloads for `SortedSetIncrement`/`SortedSetIncrementAsync`, supporting `ZADD INCR` with existence conditions ([#3071 by @mgravell](https://github.com/StackExchange/StackExchange.Redis/pull/3071))
15
16
- Recognize Azure Managed Redis (AMR) resources in new Azure clouds ([#3068 by @philon-msft](https://github.com/StackExchange/StackExchange.Redis/pull/3068))
/// Increments the score of member in the sorted set stored at key by increment, when the specified condition is met.
2110
+
/// If member does not exist in the sorted set and the condition permits it, it is added with increment as its score (as if its previous score was 0.0).
2111
+
/// </summary>
2112
+
/// <param name="key">The key of the sorted set.</param>
2113
+
/// <param name="member">The member to increment.</param>
2114
+
/// <param name="value">The amount to increment by.</param>
2115
+
/// <param name="when">The condition to increment the element under; only existence conditions are currently supported.</param>
2116
+
/// <param name="flags">The flags to use for this operation.</param>
2117
+
/// <returns>The new score of member, or <see langword="null"/> when the condition was not met.</returns>
2118
+
/// <remarks>
2119
+
/// <para>Uses <c>ZINCRBY</c> when <paramref name="when"/> is <see cref="ValueCondition.Always"/>, and <c>ZADD INCR</c> for <see cref="ValueCondition.Exists"/> and <see cref="ValueCondition.NotExists"/>.</para>
0 commit comments