Redis
中的字符串和其他编程语言或者其他键值存储提供的字符串非常相似。字符串拥有和其他键值存储相似的命令,如下所示:
命令 | 行为 |
GET | 获取存储在给定键中的值 |
SET | 设置存储在给定键中的值 |
DEL | 删除存储在给定键中的值(这个命令可以用于所有类型) |
示例:
127.0.0.1:6379> set hello world # 存储键值对,键为 hello,值为world OK # 表示存储成功 127.0.0.1:6379> get hello # 获取键为hello的值 "world" # 返回键为hello的值,为world 127.0.0.1:6379> get world # 获取键为world的值,这个键在数据库中没有 (nil) # 因为键没有,所以返回值为nil,这个在lua语言中表示null 127.0.0.1:6379> del hello # 获取键为hello的键值对 (integer) 1 # 删除回执 127.0.0.1:6379> get hello # 重新获取键为hello的值 (nil) # 因为上一步被删了,所以返回nil