五大数据类型
选择库
select 0
select 1
select 15
查询全部
keys *
存取 string
string可以包含任何数据。比如jpg图片或者序列化的对象。string类型的值最大能存储512MB
set name yuan
get name
存取 hash
hset test 4 pop
hget test 4
从左侧插入一个列表
LPUSH nums 1 2 3 4
(4,3,2,1)
从左侧取出一个
LPOP nums
(4)
返回 列表key 的长度
LLEN key