Skip to content

Commit f5eae2c

Browse files
committed
Merge branch 'master' into codecov2
2 parents 6e5caf8 + 0aa7b92 commit f5eae2c

File tree

5 files changed

+72
-0
lines changed

5 files changed

+72
-0
lines changed

src/NRedisStack/Bloom/BloomCommandBuilder.cs

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ public static SerializedCommand Add(RedisKey key, RedisValue item)
1111
return new SerializedCommand(BF.ADD, key, item);
1212
}
1313

14+
public static SerializedCommand Card(RedisKey key)
15+
{
16+
return new SerializedCommand(BF.CARD, key);
17+
}
18+
1419
public static SerializedCommand Exists(RedisKey key, RedisValue item)
1520
{
1621
return new SerializedCommand(BF.EXISTS, key, item);

src/NRedisStack/Bloom/BloomCommands.cs

+12
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ public async Task<bool> AddAsync(RedisKey key, RedisValue item)
2323
return (await _db.ExecuteAsync(BloomCommandBuilder.Add(key, item))).ToString() == "1";
2424
}
2525

26+
/// <inheritdoc/>
27+
public long Card(RedisKey key)
28+
{
29+
return _db.Execute(BloomCommandBuilder.Card(key)).ToLong();
30+
}
31+
32+
/// <inheritdoc/>
33+
public async Task<long> CardAsync(RedisKey key)
34+
{
35+
return (await _db.ExecuteAsync(BloomCommandBuilder.Card(key))).ToLong();
36+
}
37+
2638
/// <inheritdoc/>
2739
public bool Exists(RedisKey key, RedisValue item)
2840
{

src/NRedisStack/Bloom/IBloomCommands.cs

+16
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,22 @@ public interface IBloomCommands
2323
/// <remarks><seealso href="https://redis.io/commands/bf.add"/></remarks>
2424
Task<bool> AddAsync(RedisKey key, RedisValue item);
2525

26+
/// <summary>
27+
/// Returns the cardinality of a Bloom filter.
28+
/// </summary>
29+
/// <param name="key">The name of the filter.</param>
30+
/// <returns>number of items that were added to a Bloom filter and detected as unique.</returns>
31+
/// <remarks><seealso href="https://redis.io/commands/bf.card"/></remarks>
32+
long Card(RedisKey key);
33+
34+
/// <summary>
35+
/// Returns the cardinality of a Bloom filter.
36+
/// </summary>
37+
/// <param name="key">The name of the filter.</param>
38+
/// <returns>number of items that were added to a Bloom filter and detected as unique.</returns>
39+
/// <remarks><seealso href="https://redis.io/commands/bf.card"/></remarks>
40+
Task<long> CardAsync(RedisKey key);
41+
2642
/// <summary>
2743
/// Checks whether an item exist in the Bloom Filter or not.
2844
/// </summary>

src/NRedisStack/Bloom/Literals/Commands.cs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
internal class BF
44
{
55
public const string ADD = "BF.ADD";
6+
public const string CARD = "BF.CARD";
67
public const string EXISTS = "BF.EXISTS";
78
public const string INFO = "BF.INFO";
89
public const string INSERT = "BF.INSERT";

tests/NRedisStack.Tests/Bloom/BloomTests.cs

+38
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,44 @@ public void TestModulePrefixs()
331331
Assert.NotEqual(bf1.GetHashCode(), bf2.GetHashCode());
332332
}
333333

334+
[Fact]
335+
public void TestCard()
336+
{
337+
IDatabase db = redisFixture.Redis.GetDatabase();
338+
db.Execute("FLUSHALL");
339+
var bf = db.BF();
340+
341+
// return 0 if the key does not exist:
342+
Assert.Equal(0, bf.Card("notExist"));
343+
344+
// Store a filter:
345+
Assert.True(bf.Add("bf1", "item_foo"));
346+
Assert.Equal(1, bf.Card("bf1"));
347+
348+
// Error when key is of a type other than Bloom filter:
349+
db.StringSet("setKey", "value");
350+
Assert.Throws<RedisServerException>(() => bf.Card("setKey"));
351+
}
352+
353+
[Fact]
354+
public async Task TestCardAsync()
355+
{
356+
IDatabase db = redisFixture.Redis.GetDatabase();
357+
db.Execute("FLUSHALL");
358+
var bf = db.BF();
359+
360+
// return 0 if the key does not exist:
361+
Assert.Equal(0, await bf.CardAsync("notExist"));
362+
363+
// Store a filter:
364+
Assert.True(await bf.AddAsync("bf1", "item_foo"));
365+
Assert.Equal(1, await bf.CardAsync("bf1"));
366+
367+
// Error when key is of a type other than Bloom filter:
368+
db.StringSet("setKey", "value");
369+
await Assert.ThrowsAsync<RedisServerException>(() => bf.CardAsync("setKey"));
370+
}
371+
334372
[Fact]
335373
public void TestModulePrefixs1()
336374
{

0 commit comments

Comments
 (0)