Trying to use
KeyDelete(RedisKey[] keys, CommandFlags flags = CommandFlags.None);
I have array of string[] , I am not seeing any examples out there when I search for converting these data types. I am not even sure how to create a new RedisKey.
Tried
RedisKey redisKey = new RedisKey("d");
above does not work, any suggestions?
RedisKeyandstring. If you want a key with the value of "d", just make a direct assignment,RedisKey redisKey = "d"github.com/StackExchange/StackExchange.Redis/blob/master/Docs/…