金刚 发表于 2020-8-6 10:32:32

REDIS-python-字符串操作

redis字符串操作:

Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。

# 进入redis客户端界面
C:\Users\qingming_wu>redis-cli

# 查看redis数据库所有键值对
127.0.0.1:6379> keys *
(empty list or set)

# redis设置字符串键值对
127.0.0.1:6379> set username zhiliao
OK

# 通过键获取设置值
127.0.0.1:6379> get username
"zhiliao"

# 如果值是空格连接,需要用双引号包住,再设置键值对
127.0.0.1:6379> set username "hello world"
OK
127.0.0.1:6379> get username
"hello world"

# 删除字符串键值对
127.0.0.1:6379> del username
(integer) 1
127.0.0.1:6379> get username
(nil)


# 有两种方式设置过期时间,设置值的时候,设置完值后后期设置过期时间
# 字符串键值对设置过期时间
127.0.0.1:6379> set username zhiliao EX 10
OK

# 查看过期时间(过期之后返回-2,没有过期返回剩下的时间)
127.0.0.1:6379> ttl username
(integer) -2
127.0.0.1:6379> set username zhiliao EX 10
OK
127.0.0.1:6379> ttl username
(integer) 3
127.0.0.1:6379> set username hy
OK

# 后期设置过期时间
127.0.0.1:6379> expire username 20
(integer) 1
127.0.0.1:6379> ttl username
(integer) 16
页: [1]
查看完整版本: REDIS-python-字符串操作