尝试使用
KeyDelete(RedisKey[] keys, CommandFlags flags = CommandFlags.None);
我有一串string [], 当我搜索转换这些数据类型时,我没有看到任何示例。我甚至不确定如何创建一个新的RedisKey。
尝试
RedisKey redisKey = new RedisKey("d");
以上不起作用,有什么建议吗?
答案 0 :(得分:28)
从source code RedisKey
隐式转换string
:
/// <summary>
/// Create a key from a String
/// </summary>
public static implicit operator RedisKey(string key)
{
if (key == null) return default(RedisKey);
return new RedisKey(null, key);
}
所以你可以通过
创建一个RedisKey key = "hello";
或
var key = (RedisKey)"hello";
要将IEnumerable<string>
转换为RedisKey[]
,您可以执行以下操作:
var keys = strings.Select(key => (RedisKey)key).ToArray();