Memcached get命令
Memcached get命令获取存储在key(键)中的value(数据值),如果key不存在,则返回空。
语法:文章源自小柒网-https://www.yangxingzhen.cn/6959.html
get 命令的基本语法格式如下:文章源自小柒网-https://www.yangxingzhen.cn/6959.html
get key文章源自小柒网-https://www.yangxingzhen.cn/6959.html
多个 key 使用空格隔开,如下:文章源自小柒网-https://www.yangxingzhen.cn/6959.html
get key1 key2 key3文章源自小柒网-https://www.yangxingzhen.cn/6959.html
参数说明如下:文章源自小柒网-https://www.yangxingzhen.cn/6959.html
key:键值key-value结构中的key,用于查找缓存值。文章源自小柒网-https://www.yangxingzhen.cn/6959.html
实例文章源自小柒网-https://www.yangxingzhen.cn/6959.html
在以下实例中,我们使用test作为key,过期时间设置为900秒。文章源自小柒网-https://www.yangxingzhen.cn/6959.html
set test 0 900 9文章源自小柒网-https://www.yangxingzhen.cn/6959.html
memcached
STORED
get test
VALUE test 0 9
memcached
END
若文章图片、下载链接等信息出错,请在评论区留言反馈,博主将第一时间更新!如本文“对您有用”,欢迎随意打赏,谢谢!
评论