香港VPS怎么在redis中设置key的过期时间

已关闭留言

香港VPS具体步骤如下:

1.首先,在命令行中启动redis服务;

service redis start 

2.mysql服务启动后,输入用户名,登录redis数据库;

redis-cli.exe -h -p

3.登录到redis数据库后,在数据库中执行以下命令即可为key设置过期时间;

1)使用expire命令设置key的过期时间

#设置key的过期时间为10

expire key 10

2)使用setex命令为key赋值并设置过期时间

#设置key的值为value,过期时间为10

setex key 10 value