If you use the RedisNativeClient class, you have this method to delete a specific key:
public int Del(string key)
if you want to delete all the keys that you can call Del with * as a key
and you have these methods:
public void FlushDb() public void FlushAll()
if you are using the RedisClient class, you have this method:
public bool Remove(string key)
source share