mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-22 04:45:16 +00:00
Merge pull request #1 from stephan-nordnes-eriksen/patch-1
incorrect GETRANGE description
This commit is contained in:
commit
87657c1c4b
@ -21,7 +21,7 @@ STRLEN key # get the length of the value stored in a key
|
||||
MSET key value [key value ...] # set multiple keys to multiple values
|
||||
MSETNX key value [key value ...] # set multiple keys to multiple values, only if none of the keys exist
|
||||
GET key # get value in key
|
||||
GETRANGE key value # get a substring value of a key and return its old value
|
||||
GETRANGE key start end # get substring of stored value from start to end offsets (both inclusive)
|
||||
MGET key [key ...] # get the values of all the given keys
|
||||
INCR key # increment value in key
|
||||
INCRBY key increment # increment the integer value of a key by the given amount
|
||||
|
Loading…
Reference in New Issue
Block a user