From 96b1841f42838ba7a588475d4f4973798cf3fd5d Mon Sep 17 00:00:00 2001 From: Demis Bellot Date: Wed, 2 Jul 2014 12:38:15 -0400 Subject: [PATCH] Fix SortedSet API's --- src/ServiceStack.Redis/RedisClientSortedSet.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ServiceStack.Redis/RedisClientSortedSet.cs b/src/ServiceStack.Redis/RedisClientSortedSet.cs index f8461e82..78086aec 100644 --- a/src/ServiceStack.Redis/RedisClientSortedSet.cs +++ b/src/ServiceStack.Redis/RedisClientSortedSet.cs @@ -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)