当前位置:网站首页>memcached基础15

memcached基础15

2022-06-27 01:35:00 franket

cas

cas即checked and set的意思,只有当最后一个参数和gets所获取的参数匹配时才能存储,否则返回“EXISTS”

gets a

VALUE a 0 8 11

lkjhgfds

END

cas a 0 0 8 12

asdfghjk

EXISTS

gets a

VALUE a 0 8 11

lkjhgfds

END

cas a 0 0 8 11

asdfdsas

STORED

gets a

VALUE a 0 8 12

asdfdsas

END

append

在现有的缓存数据后添加缓存数据,如现有缓存的key不存在服务器响应为ERROR

get a

VALUE a 0 8

asdfdsas

END

append a 0 0 8

lkjhhjkl

STORED

get a

VALUE a 0 16

asdfdsaslkjhhjkl

END

append uu

ERROR

原网站

版权声明
本文为[franket]所创,转载请带上原文链接,感谢
https://cloud.tencent.com/developer/article/2030761