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