Reputation: 2016
I wonder is there any method to completely delete a set in the StackExchange.Redis
library?
As I know there is a method in Redis : Empty/delete a set in Redis?
Thanks
Upvotes: 3
Views: 2476
Reputation: 10818
The KeyDelete
method should be what you’re looking for. As seen in the repo the comments indicate it functions the same as DEL
Upvotes: 4