删除 StackExchange.Redis 中集合的所有键

Delete All keys of a Set in StackExchange.Redis

请问有什么方法可以彻底删除StackExchange.Redis库中的一个set吗?

据我所知,Redis 中有一个方法: Empty/delete a set in Redis?

谢谢

KeyDelete 方法应该是您正在寻找的方法。正如在 repo the comments indicate it functions the same as DEL

中看到的