 悬赏园豆:10
                [已解决问题] 
            
                    解决于 2016-03-07 13:16
                悬赏园豆:10
                [已解决问题] 
            
                    解决于 2016-03-07 13:16 
                 
        ServiceStack.Redis Set集合,取值有
HashSet<string> GetAllItemsFromSet(string setId);
这个只能一次取一个key,如何传多个key批量取值?
//并集
HashSet<string> IRedisClient.GetUnionFromSets(params string[] setIds);
//交集
HashSet<string> IRedisClient.GetIntersectFromSets(params string[] setIds);
//差集
HashSet<string> IRedisClient.GetDifferencesFromSet(string fromSetId, params string[] withSetIds);
http://mono.servicestack.net/img/Redis-annotated.png
https://servicestack.net/redis
找找吧~