Memcached

 
set() add() replace() 的不同:
set:如果对应的key不存在,则添加;否则更新。
引用
既然 set 的行为表现类似与 SQL 中的Update,那么,当key已存在、更新该key的value时,该条cache的expire time是否会被重置那?答案是是的,详见:
http://stackoverflow.com/questions/6066939/does-setting-a-memcached-key-that-already-exists-refresh-the-expiration-time
add:如果对应的key不存在,则添加;否则不改变原来的value,而是返回 RES_NOTSTORED 标识失败。
replace:如果对应的key已存在,则更新;否则返回 RES_NOTSTORED 标识失败。
http://www.php.net/manual/en/class.memcached.php
https://code.google.com/p/googleappengine/source/browse/trunk/python/google/appengine/api/memcache/__init__.py#761
http://serverfault.com/questions/291681/add-vs-set-in-memcached
http://stackoverflow.com/questions/9846759/what-is-the-difference-between-memcache-store-and-add

你可能感兴趣的:(cache,memcached,memcache)