AminSojoudi
AminSojoudi

Reputation: 2016

Delete All keys of a Set in StackExchange.Redis

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

Answers (1)

maccettura
maccettura

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

Related Questions