複数のハッシュセットを取得したい。がある
public HashSet<string> GetAllItemsFromSet (string setId){ ....}
私は欲しい
public HashSet<string>[] GetAllItemsFromSets (string[] setIds)
どのように?
複数のハッシュセットを取得したい。がある
public HashSet<string> GetAllItemsFromSet (string setId){ ....}
私は欲しい
public HashSet<string>[] GetAllItemsFromSets (string[] setIds)
どのように?
API は RedisClient には存在せず、このタスクには特定の Redis サーバー操作がないため、Redis クライアントを自分で拡張する必要があります。これは、Extension メソッドを使用して簡単に行うことができます。
public static class RedisClientExtensions {
public static HashSet<string>[] GetAllItemsFromSets(this IRedisClient client,
string[] setIds)
{
return setIds.Select(x => client.GetAllItemsFromSet(x)).ToArray();
}
}