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
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
"is there any method to completely delete a Set..."-- You literally linked to a question that tells you to useDEL. What are you actually asking then because I do not understand your issue.StackExchange.Redislibrary not a command in Redis.KeyDelete. As seen in the github repo the comments for this method indicate its the same as DELKeyDeletejust deletes a single Key/Value, I want to delete aSetwith all keys inside it.