Skip to content

Commit

Permalink
Needed to expose a way to send additional arguments to the Set Union …
Browse files Browse the repository at this point in the history
…and Intersect calls
  • Loading branch information
andyberryman committed Mar 12, 2015
1 parent 6912247 commit 64a3947
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Expand Up @@ -162,7 +162,9 @@ public interface IRedisTypedClient<T>
long GetSortedSetCount(IRedisSortedSet<T> set);
double GetItemScoreInSortedSet(IRedisSortedSet<T> set, T value);
long StoreIntersectFromSortedSets(IRedisSortedSet<T> intoSetId, params IRedisSortedSet<T>[] setIds);
long StoreIntersectFromSortedSets(IRedisSortedSet<T> intoSetId, IRedisSortedSet<T>[] setIds, string[] args);
long StoreUnionFromSortedSets(IRedisSortedSet<T> intoSetId, params IRedisSortedSet<T>[] setIds);
long StoreUnionFromSortedSets(IRedisSortedSet<T> intoSetId, IRedisSortedSet<T>[] setIds, string[] args);

//Hash operations
bool HashContainsEntry<TKey>(IRedisHash<TKey, T> hash, TKey key);
Expand Down
2 changes: 2 additions & 0 deletions src/ServiceStack.Interfaces/Redis/IRedisClient.cs
Expand Up @@ -256,7 +256,9 @@ public interface IRedisClient
long GetSortedSetCount(string setId, double fromScore, double toScore);
double GetItemScoreInSortedSet(string setId, string value);
long StoreIntersectFromSortedSets(string intoSetId, params string[] setIds);
long StoreIntersectFromSortedSets(string intoSetId, string[] setIds, string[] args);
long StoreUnionFromSortedSets(string intoSetId, params string[] setIds);
long StoreUnionFromSortedSets(string intoSetId, string[] setIds, string[] args);
List<string> SearchSortedSet(string setId, string start = null, string end = null, int? skip = null, int? take = null);
long SearchSortedSetCount(string setId, string start = null, string end = null);
long RemoveRangeFromSortedSetBySearch(string setId, string start = null, string end = null);
Expand Down

0 comments on commit 64a3947

Please sign in to comment.