Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 96b1841

Browse files
committed
Fix SortedSet API's
1 parent 072f099 commit 96b1841

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ServiceStack.Redis/RedisClientSortedSet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,12 @@ public void RemoveRangeByScore(double fromScore, double toScore)
144144

145145
public void StoreFromIntersect(params IRedisSortedSet[] ofSets)
146146
{
147-
client.StoreIntersectFromSets(setId, ofSets.GetIds());
147+
client.StoreIntersectFromSortedSets(setId, ofSets.GetIds());
148148
}
149149

150150
public void StoreFromUnion(params IRedisSortedSet[] ofSets)
151151
{
152-
client.StoreUnionFromSets(setId, ofSets.GetIds());
152+
client.StoreUnionFromSortedSets(setId, ofSets.GetIds());
153153
}
154154

155155
public long GetItemIndex(string value)

0 commit comments

Comments
 (0)