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
找找吧~