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

Commit

Permalink
Fix SortedSet API's
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Jul 2, 2014
1 parent 072f099 commit 96b1841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ServiceStack.Redis/RedisClientSortedSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,12 @@ public void RemoveRangeByScore(double fromScore, double toScore)

public void StoreFromIntersect(params IRedisSortedSet[] ofSets)
{
client.StoreIntersectFromSets(setId, ofSets.GetIds());
client.StoreIntersectFromSortedSets(setId, ofSets.GetIds());
}

public void StoreFromUnion(params IRedisSortedSet[] ofSets)
{
client.StoreUnionFromSets(setId, ofSets.GetIds());
client.StoreUnionFromSortedSets(setId, ofSets.GetIds());
}

public long GetItemIndex(string value)
Expand Down

0 comments on commit 96b1841

Please sign in to comment.