mirror of https://github.com/ledisdb/ledisdb.git
update doc
This commit is contained in:
parent
026a72b58e
commit
e43d2ea086
|
@ -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.
|
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`
|
+ KV: `del`, `mdel`
|
||||||
+ Hash: `hclear`, `mhclear`
|
+ Hash: `hclear`, `hmclear`
|
||||||
+ List: `lclear`, `mlclear`
|
+ List: `lclear`, `lmclear`
|
||||||
+ Set: `sclear`, `msclear`
|
+ Set: `sclear`, `smclear`
|
||||||
+ Zset: `zclear`, `mzclear`
|
+ Zset: `zclear`, `zmclear`
|
||||||
+ Bitmap: `bclear`, `mbclear`
|
+ Bitmap: `bclear`, `bmclear`
|
||||||
|
|
||||||
## Expire, Persist, and TTL
|
## Expire, Persist, and TTL
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue