SET key value##
此命令用于在指定键设置值,一个key最多存储512M,如果key存在,同名会产生覆盖
SET KEY VALUE [EX seconds] [PX milliseconds] [NX|XX]
EX seconds设置指定到期时间,单位为秒
px milliseconds 设置指定到期时间,单位为毫秒
NX 只有键值不存在的时候才能设定成功,否则失败,相当于只用于新建,不可覆盖
XX 只有键值存在时才会设定成功,否则出错,相当于只用于覆盖,不会新建
127.0.0.1:6379> SET redis hello OK 127.0.0.1:6379> GET redis "hello" // 键值已存在,NX不可更新存在的键 127.0.0.1:6379> SET redis world NX (nil) 127.0.0.1:6379> GET redis "hello" // 键值不存在,XX新建失败,XX标记只为更新 127.0.0.1:6379> SET redis world XX OK 127.0.0.1:6379> GET redis2 world XX (error) ERR wrong number of arguments for 'get' command // 有效期 单位秒 127.0.0.1:6379> set redis 'hello world' EX 5 OK 127.0.0.1:6379> TTL redis (integer) 3 127.0.0.1:6379> TTL redis (integer) -2 127.0.0.1:6379> EXISTS redis (integer) 0 // 有效期 单位毫秒 127.0.0.1:6379> set redis 'hello world' PX 5000 OK 127.0.0.1:6379> PTTL redis (integer) 752 127.0.0.1:6379> EXISTS redis (integer) 0 // EX PX同时存在时,后面的会覆盖前面的 127.0.0.1:6379> set redis 'hello world' EX 10 PX 50000 OK 127.0.0.1:6379> TTL redis (integer) 42 127.0.0.1:6379> set redis 'hello world' PX 50000 EX 5 OK 127.0.0.1:6379> TTL redis (integer) 2
GET key##
根据key找到对应的值,如果不存在则返回nil
,如果类型不是字符串则会报错
GET key
GETSET key value##
设置指定key的值,并且返回旧的值,如果不存在返回nil
127.0.0.1:6379> GETSET redis 'stronger'
"hello world"
127.0.0.1:6379> GET redis
"stronger"
127.0.0.1:6379> GETSET str1 'hello'
(nil)
127.0.0.1:6379> GET str1
"hello"
MSET key value [key value…]
一次设置多个键值对
127.0.0.1:6379> MSET str1 'text1' str2 'text2' str3 'text3'
OK
MGET key [key…]
一次获得多个键值对
127.0.0.1:6379> MGET str1 str2 str3 str4
1) "text1"
2) "text2"
3) "text3"
4) (nil)
STRLEN key
获取key的字符串长度
127.0.0.1:6379> STRLEN str1
(integer) 5
127.0.0.1:6379> STRLEN str4
(integer) 0 // 不存在返回0
SETRANGE key offset value
字符串替换,如果key不存在,则会创建key;如果设置的key原来的字符串长度比offset小,则会以零字节(\x00)填充
127.0.0.1:6379> SET str4 'hello world'
OK
127.0.0.1:6379> SETRANGE str4 6 'Redis'
(integer) 11
127.0.0.1:6379> GET str4
"hello Redis"
127.0.0.1:6379> EXISTS str5
(integer) 0 // str5不存在
127.0.0.1:6379> SETRANGE str5 5 'redis'
(integer) 10
127.0.0.1:6379> GET str5
"\x00\x00\x00\x00\x00redis"
GETRANGE key start end
获取存储在键字符串值,由偏移确定的子串的开始和结束(两者都包括)。负偏移可以提供从字符串的末尾的偏移开始被使用。
127.0.0.1:6379> SET redis 'hello world'
OK
127.0.0.1:6379> GETRANGE redis 0 4
"hello"
127.0.0.1:6379> GETRANGE redis 6 -1
"world"
127.0.0.1:6379> GETRANGE redis 6 1000
"world"
SETNX key value
只有key不存在的时候设置成功,成功返回1,失败返回0
127.0.0.1:6379> SETNX str5 'hello'
(integer) 0
127.0.0.1:6379> SETNX str6 'hello'
(integer) 1
127.0.0.1:6379> MGET str5 str6
1) "\x00\x00\x00\x00\x00redis"
2) "hello"
SETEX key seconds value
设定key过期时间单位为秒,设置值和过期时间动作是原子性的。
127.0.0.1:6379> SETEX str6 5 'redis'
OK
127.0.0.1:6379> GET str6
"redis"
127.0.0.1:6379> TTL str6
(integer) 2 // 获取还有多少秒过期
127.0.0.1:6379> GET str6
(nil) // 5秒后过期
MSETNX key value [key value]
只有key不存在的时候设置成功,可同时设置多个,只要有一个失败,整体全部失败,成功返回1,失败返回0
127.0.0.1:6379> MSETNX str5 'text5' str6 'text6'
(integer) 0
127.0.0.1:6379> EXISTS str6
(integer) 0
127.0.0.1:6379> EXISTS str5
(integer) 1 // str5已经存在,所以上面的MSETNX失败
127.0.0.1:6379> MSETNX str6 'text6' str7 'text7'
(integer) 1 // str6和str7不存在,成功
127.0.0.1:6379> EXISTS str6
(integer) 1
127.0.0.1:6379> EXISTS str7
(integer) 1
PSETEX key milliseconds value
设定key过期时间单位为毫秒,设置值和过期时间动作是原子性的。
使用方法与SETEX相同
127.0.0.1:6379> PSETEX str7 5000 'text7'
OK
127.0.0.1:6379> PTTL str7
(integer) 344
127.0.0.1:6379> PTTL str7
(integer) -2
127.0.0.1:6379> EXISTS str7
(integer) 0
INCR key
对key中存储的数字+1,如果key不存在,则添加key,值为1;如果key存储的不是数字会保存,key中存储的必须是整数
127.0.0.1:6379> SET page 1
OK
127.0.0.1:6379> INCR page
(integer) 2
127.0.0.1:6379> GET page
"2"
127.0.0.1:6379> SET redis 'test'
OK
127.0.0.1:6379> INCR redis
(error) ERR value is not an integer or out of range
127.0.0.1:6379> EXISTS count
(integer) 0
127.0.0.1:6379> INCR count
(integer) 1
INCRBY key increment
将key中存储的数字加上指定增量,增量必须为整数
127.0.0.1:6379> SET page 1
OK
127.0.0.1:6379> INCR page
(integer) 2
127.0.0.1:6379> INCRBY page 5
(integer) 7
127.0.0.1:6379> INCRBY page 1.2
(error) ERR value is not an integer or out of range
INCRBYFLOAT key increment
将key中存储的数字加上指定增量,可以为浮点数和整数
127.0.0.1:6379> INCRBYFLOAT page 1.2
"8.2"
127.0.0.1:6379> INCRBYFLOAT page 5
"13.2"
DECR key
将key中存储的数字-1,语法与INCR相同
DECRBY key decrement
将key中存储的数字减去指定量,必须为整数,语法与INCRBY相同
127.0.0.1:6379> SET page '10'
OK
127.0.0.1:6379> DECR page
(integer) 9
127.0.0.1:6379> DECRBY page 5
(integer) 4
127.0.0.1:6379> DECRBY page2 5
(integer) -5
127.0.0.1:6379> DECRBY page2 -5
(integer) 0
注意:没有DECRBYFLOAT!!!没有DECRBYFLOAT!!!没有DECRBYFLOAT!!!
APPEND key append
向字符串末尾追加内容,如果key不存在相当于执行了SET
操作,返回值为字符串的长度
127.0.0.1:6379> EXISTS redis
(integer) 0
127.0.0.1:6379> APPEND redis 'hello'
(integer) 5
127.0.0.1:6379> APPEND redis ' world'
(integer) 11
127.0.0.1:6379> GET redis
"hello world"