Skip to content

Commit ea837f1

Browse files
committed
Add new RemoveItemsFromSortedSet() API's
1 parent 21e4372 commit ea837f1

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed

lib/ServiceStack.Interfaces.dll

0 Bytes
Binary file not shown.

lib/ServiceStack.Redis.XML

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/ServiceStack.Redis.dll

0 Bytes
Binary file not shown.

src/ServiceStack.Interfaces/Redis/IRedisClient.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ public interface IRedisClient
235235
bool AddRangeToSortedSet(string setId, List<string> values, double score);
236236
bool AddRangeToSortedSet(string setId, List<string> values, long score);
237237
bool RemoveItemFromSortedSet(string setId, string value);
238+
long RemoveItemsFromSortedSet(string setId, List<string> values);
238239
string PopItemWithLowestScoreFromSortedSet(string setId);
239240
string PopItemWithHighestScoreFromSortedSet(string setId);
240241
bool SortedSetContainsItem(string setId, string value);

src/ServiceStack.Interfaces/Redis/IRedisNativeClient.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ public interface IRedisNativeClient
160160
long ZAdd(string setId, double score, byte[] value);
161161
long ZAdd(string setId, long score, byte[] value);
162162
long ZRem(string setId, byte[] value);
163+
long ZRem(string setId, byte[][] values);
163164
double ZIncrBy(string setId, double incrBy, byte[] value);
164165
double ZIncrBy(string setId, long incrBy, byte[] value);
165166
long ZRank(string setId, byte[] value);

0 commit comments

Comments
 (0)