Skip to content

Commit 51b1717

Browse files
shacharPashchayim
andauthored
Create Interfaces for the Commands Classes (#41)
* Add IBloomCommands * Add ICmsCommands * Add ICuckooCommands * Add ISearchCommands * Add ITdigestCommands * Add ITimeSeriesCommands * Add ITopKCommands Co-authored-by: Chayim <chayim@users.noreply.github.com>
1 parent 2bcd398 commit 51b1717

26 files changed

+2417
-1807
lines changed

src/NRedisStack/Bloom/BloomCommands.cs

+25-167
Large diffs are not rendered by default.
+210
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,210 @@
1+
using NRedisStack.Bloom.DataTypes;
2+
using StackExchange.Redis;
3+
4+
namespace NRedisStack
5+
{
6+
public interface IBloomCommands
7+
{
8+
/// <summary>
9+
/// Adds an item to a Bloom Filter.
10+
/// </summary>
11+
/// <param name="key">The key under which the filter is found.</param>
12+
/// <param name="item">The item to add.</param>
13+
/// <returns><see langword="true"/> if the item did not exist in the filter, <see langword="false"/> otherwise.</returns>
14+
/// <remarks><seealso href="https://redis.io/commands/bf.add"/></remarks>
15+
bool Add(RedisKey key, RedisValue item);
16+
17+
/// <summary>
18+
/// Adds an item to a Bloom Filter.
19+
/// </summary>
20+
/// <param name="key">The key under which the filter is found.</param>
21+
/// <param name="item">The item to add.</param>
22+
/// <returns><see langword="true"/> if the item did not exist in the filter, <see langword="false"/> otherwise.</returns>
23+
/// <remarks><seealso href="https://redis.io/commands/bf.add"/></remarks>
24+
Task<bool> AddAsync(RedisKey key, RedisValue item);
25+
26+
/// <summary>
27+
/// Checks whether an item exist in the Bloom Filter or not.
28+
/// </summary>
29+
/// <param name="key">The name of the filter.</param>
30+
/// <param name="item">The item to check for.</param>
31+
/// <returns><see langword="true"/> means the item may exist in the filter,
32+
/// and <see langword="false"/> means it does not exist in the filter.</returns>
33+
/// <remarks><seealso href="https://redis.io/commands/bf.exists"/></remarks>
34+
bool Exists(RedisKey key, RedisValue item);
35+
36+
/// <summary>
37+
/// Checks whether an item exist in the Bloom Filter or not.
38+
/// </summary>
39+
/// <param name="key">The name of the filter.</param>
40+
/// <param name="item">The item to check for.</param>
41+
/// <returns><see langword="true"/> means the item may exist in the filter,
42+
/// and <see langword="false"/> means it does not exist in the filter.</returns>
43+
/// <remarks><seealso href="https://redis.io/commands/bf.exists"/></remarks>
44+
Task<bool> ExistsAsync(RedisKey key, RedisValue item);
45+
46+
/// <summary>
47+
/// Return information about a bloom filter.
48+
/// </summary>
49+
/// <param name="key">Name of the key to return information about.</param>
50+
/// <returns>Information of the filter.</returns>
51+
/// <remarks><seealso href="https://redis.io/commands/bf.info"/></remarks>
52+
BloomInformation Info(RedisKey key);
53+
54+
/// <summary>
55+
/// Return information about a bloom filter.
56+
/// </summary>
57+
/// <param name="key">Name of the key to return information about.</param>
58+
/// <returns>Information of the filter.</returns>
59+
/// <remarks><seealso href="https://redis.io/commands/bf.info"/></remarks>
60+
Task<BloomInformation> InfoAsync(RedisKey key);
61+
62+
/// <summary>
63+
/// Adds one or more items to a Bloom Filter. A filter will be created if it does not exist.
64+
/// </summary>
65+
/// <param name="key">The name of the filter.</param>
66+
/// <param name="items">One or more items to add.</param>
67+
/// <param name="capacity">(Optional) Specifies the desired capacity for the filter to be created.</param>
68+
/// <param name="error">(Optional) Specifies the error ratio of the newly created filter if it does not yet exist.</param>
69+
/// <param name="expansion">(Optional) When capacity is reached, an additional sub-filter is
70+
/// created in size of the last sub-filter multiplied by expansion.</param>
71+
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the
72+
/// filter should not be created if it does not already exist.</param>
73+
/// <param name="nonscaling">(Optional) <see langword="true"/> toprevent the filter
74+
/// from creating additional sub-filters if initial capacity is reached.</param>
75+
/// <returns>An array of booleans. Each element is either true or false depending on whether the
76+
/// corresponding input element was newly added to the filter or may have previously existed.</returns>
77+
/// <remarks><seealso href="https://redis.io/commands/bf.insert"/></remarks>
78+
bool[] Insert(RedisKey key, RedisValue[] items, int? capacity = null,
79+
double? error = null, int? expansion = null,
80+
bool nocreate = false, bool nonscaling = false);
81+
82+
/// <summary>
83+
/// Adds one or more items to a Bloom Filter. A filter will be created if it does not exist.
84+
/// </summary>
85+
/// <param name="key">The name of the filter.</param>
86+
/// <param name="items">One or more items to add.</param>
87+
/// <param name="capacity">(Optional) Specifies the desired capacity for the filter to be created.</param>
88+
/// <param name="error">(Optional) Specifies the error ratio of the newly created filter if it does not yet exist.</param>
89+
/// <param name="expansion">(Optional) When capacity is reached, an additional sub-filter is
90+
/// created in size of the last sub-filter multiplied by expansion.</param>
91+
/// <param name="nocreate">(Optional) <see langword="true"/> to indicates that the
92+
/// filter should not be created if it does not already exist.</param>
93+
/// <param name="nonscaling">(Optional) <see langword="true"/> toprevent the filter
94+
/// from creating additional sub-filters if initial capacity is reached.</param>
95+
/// <returns>An array of booleans. Each element is either true or false depending on whether the
96+
/// corresponding input element was newly added to the filter or may have previously existed.</returns>
97+
/// <remarks><seealso href="https://redis.io/commands/bf.insert"/></remarks>
98+
Task<bool[]> InsertAsync(RedisKey key, RedisValue[] items, int? capacity = null,
99+
double? error = null, int? expansion = null,
100+
bool nocreate = false, bool nonscaling = false);
101+
102+
/// <summary>
103+
/// Restores a filter previosly saved using SCANDUMP.
104+
/// </summary>
105+
/// <param name="key">Name of the key to restore.</param>
106+
/// <param name="iterator">Iterator value associated with data (returned by SCANDUMP).</param>
107+
/// <param name="data">Current data chunk (returned by SCANDUMP).</param>
108+
/// <returns><see langword="true"/> if executed correctly, error otherwise/></returns>
109+
/// <remarks><seealso href="https://redis.io/commands/bf.loadchunk"/></remarks>
110+
bool LoadChunk(RedisKey key, long iterator, Byte[] data);
111+
112+
/// <summary>
113+
/// Restores a filter previosly saved using SCANDUMP.
114+
/// </summary>
115+
/// <param name="key">Name of the key to restore.</param>
116+
/// <param name="iterator">Iterator value associated with data (returned by SCANDUMP).</param>
117+
/// <param name="data">Current data chunk (returned by SCANDUMP).</param>
118+
/// <returns><see langword="true"/> if executed correctly, error otherwise/></returns>
119+
/// <remarks><seealso href="https://redis.io/commands/bf.loadchunk"/></remarks>
120+
Task<bool> LoadChunkAsync(RedisKey key, long iterator, Byte[] data);
121+
122+
/// <summary>
123+
/// Adds one or more items to the Bloom Filter. A filter will be created if it does not exist yet.
124+
/// </summary>
125+
/// <param name="key">The name of the filter.</param>
126+
/// <param name="items">One or more items to add.</param>
127+
/// <returns>An array of booleans. Each element is either true or false depending on whether the
128+
/// corresponding input element was newly added to the filter or may have previously existed.</returns>
129+
/// <remarks><seealso href="https://redis.io/commands/bf.madd"/></remarks>
130+
bool[] MAdd(RedisKey key, params RedisValue[] items);
131+
132+
/// <summary>
133+
/// Adds one or more items to the Bloom Filter. A filter will be created if it does not exist yet.
134+
/// </summary>
135+
/// <param name="key">The name of the filter.</param>
136+
/// <param name="items">One or more items to add.</param>
137+
/// <returns>An array of booleans. Each element is either true or false depending on whether the
138+
/// corresponding input element was newly added to the filter or may have previously existed.</returns>
139+
/// <remarks><seealso href="https://redis.io/commands/bf.madd"/></remarks>
140+
Task<bool[]> MAddAsync(RedisKey key, params RedisValue[] items);
141+
142+
/// <summary>
143+
/// Checks whether one or more items may exist in the filter or not.
144+
/// </summary>
145+
/// <param name="key">The name of the filter.</param>
146+
/// <param name="items">One or more items to check.</param>
147+
/// <returns>An array of booleans, for each item <see langword="true"/> means the item may exist in the filter,
148+
/// and <see langword="false"/> means the item may exist in the filter.</returns>
149+
/// <remarks><seealso href="https://redis.io/commands/bf.mexists"/></remarks>
150+
bool[] MExists(RedisKey key, RedisValue[] items);
151+
152+
/// <summary>
153+
/// Checks whether one or more items may exist in the filter or not.
154+
/// </summary>
155+
/// <param name="key">The name of the filter.</param>
156+
/// <param name="items">One or more items to check.</param>
157+
/// <returns>An array of booleans, for each item <see langword="true"/> means the item may exist in the filter,
158+
/// and <see langword="false"/> means the item may exist in the filter.</returns>
159+
/// <remarks><seealso href="https://redis.io/commands/bf.mexists"/></remarks>
160+
Task<bool[]> MExistsAsync(RedisKey key, RedisValue[] items);
161+
162+
/// <summary>
163+
/// Creates a new Bloom Filter.
164+
/// </summary>
165+
/// <param name="key">The key under which the filter is found.</param>
166+
/// <param name="errorRate">The desired probability for false positives (value between 0 to 1).</param>
167+
/// <param name="capacity">The number of entries intended to be added to the filter.</param>
168+
/// <param name="expansion">(Optional) When capacity is reached, an additional sub-filter is
169+
/// created in size of the last sub-filter multiplied by expansion.</param>
170+
/// <param name="nonscaling">(Optional) <see langword="true"/> toprevent the filter
171+
/// from creating additional sub-filters if initial capacity is reached.</param>
172+
/// <returns><see langword="true"/> if executed correctly, error otherwise/></returns>
173+
/// <remarks><seealso href="https://redis.io/commands/bf.reserve"/></remarks>
174+
bool Reserve(RedisKey key, double errorRate, long capacity,
175+
int? expansion = null, bool nonscaling = false);
176+
177+
/// <summary>
178+
/// Creates a new Bloom Filter.
179+
/// </summary>
180+
/// <param name="key">The key under which the filter is found.</param>
181+
/// <param name="errorRate">The desired probability for false positives (value between 0 to 1).</param>
182+
/// <param name="capacity">The number of entries intended to be added to the filter.</param>
183+
/// <param name="expansion">(Optional) When capacity is reached, an additional sub-filter is
184+
/// created in size of the last sub-filter multiplied by expansion.</param>
185+
/// <param name="nonscaling">(Optional) <see langword="true"/> toprevent the filter
186+
/// from creating additional sub-filters if initial capacity is reached.</param>
187+
/// <returns><see langword="true"/> if executed correctly, Error otherwise.</returns>
188+
/// <remarks><seealso href="https://redis.io/commands/bf.reserve"/></remarks>
189+
Task<bool> ReserveAsync(RedisKey key, double errorRate, long capacity,
190+
int? expansion = null, bool nonscaling = false);
191+
192+
/// <summary>
193+
/// Restores a filter previosly saved using SCANDUMP.
194+
/// </summary>
195+
/// <param name="key">Name of the filter.</param>
196+
/// <param name="iterator">Iterator value; either 0 or the iterator from a previous invocation of this command.</param>
197+
/// <returns>Tuple of iterator and data.</returns>
198+
/// <remarks><seealso href="https://redis.io/commands/bf.scandump"/></remarks>
199+
Tuple<long, Byte[]> ScanDump(RedisKey key, long iterator);
200+
201+
/// <summary>
202+
/// Restores a filter previosly saved using SCANDUMP.
203+
/// </summary>
204+
/// <param name="key">Name of the filter.</param>
205+
/// <param name="iterator">Iterator value; either 0 or the iterator from a previous invocation of this command.</param>
206+
/// <returns>Tuple of iterator and data.</returns>
207+
/// <remarks><seealso href="https://redis.io/commands/bf.scandump"/></remarks>
208+
Task<Tuple<long, Byte[]>> ScanDumpAsync(RedisKey key, long iterator);
209+
}
210+
}

0 commit comments

Comments
 (0)