SET
AttentionThis page documents an earlier version. Go to the latest (v2.1)version.
Synopsis
SET key string_value [EX seconds] [PX milliseconds] [NX|XX]This command inserts string_value to be hold at key, where EX seconds sets the expire time in seconds, PX milliseconds sets the expire time in milliseconds, NX sets the key only if it does not already exist, and XX sets the key only if it already exists.
- If the
keyis already associated with a value, it is overwritten regardless of its type. - All parameters that are associated with the
key, such as datatype and time to live, are discarded.
Return Value
Returns status string.
Examples
You can do this as shown below.
1. $ SET yugakey "Yugabyte"
1. "OK"
1. $ GET yugakey
1. "Yugabyte"
See Also
append, get, getrange, getset, incr, incrby, setrange, strlen
