We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5e0d8f commit 1fefc55Copy full SHA for 1fefc55
src/NRedisStack/TopK/ITopKCommands.cs
@@ -24,9 +24,11 @@ public interface ITopKCommands
24
/// <param name="item">Items to be counted.</param>
25
/// <returns>count for responding item.</returns>
26
/// <remarks><seealso href="https://redis.io/commands/cf.count"/></remarks>
27
+ [Obsolete("TOPK.COUNT is deprecated as of Bloom 2.4.0")]
28
long[] Count(RedisKey key, params RedisValue[] items);
29
30
/// <inheritdoc cref="Count(RedisKey, RedisValue[])"/>
31
32
Task<long[]> CountAsync(RedisKey key, params RedisValue[] items);
33
34
0 commit comments