update doc

This commit is contained in:
siddontang 2014-11-28 15:48:16 +08:00
parent 026a72b58e
commit e43d2ea086
1 changed files with 5 additions and 5 deletions

View File

@ -14,11 +14,11 @@ LedisDB has no Strings data type but KV and Bitmap, any some Keys and Strings co
In Redis, `del` can delete all type data, like String, Hash, List, etc, but in LedisDB, `del` can only delete KV data. To delete other type data, you will use "clear" commands.
+ KV: `del`, `mdel`
+ Hash: `hclear`, `mhclear`
+ List: `lclear`, `mlclear`
+ Set: `sclear`, `msclear`
+ Zset: `zclear`, `mzclear`
+ Bitmap: `bclear`, `mbclear`
+ Hash: `hclear`, `hmclear`
+ List: `lclear`, `lmclear`
+ Set: `sclear`, `smclear`
+ Zset: `zclear`, `zmclear`
+ Bitmap: `bclear`, `bmclear`
## Expire, Persist, and TTL