(PECL memcached >= 0.1.0)
Memcached::casByKey — Compare and swap an item on a specific server
$cas_token
,$server_key
,$key
,$value
,$expiration
= 0
Memcached::casByKey() is functionally equivalent to
Memcached::cas(), except that the free-form
server_key
can be used to map the
key
to a specific server. This is useful if you need
to keep a bunch of related keys on a certain server.
cas_token
Unique value associated with the existing item. Generated by memcache.
server_key
Ключ, що визначає сервер, на якому зберігатиметься значення або з якого його можна отримати. Замість гешування ключа елемента, гешується ключ сервера, з яким буде взаємодіяти memcached. Це дозволяє об'єднувати пов'язані елементи на єдиному сервері для пришвидшення одночасних операцій.
key
Ключ, під яким зберігається значення.
value
Значення для зберігання.
expiration
Термін зберігання, стандарно — 0. Докладніше: Терміни зберігання.
Повертає true
у разі успіху або false
в разі помилки.
The Memcached::getResultCode() will return
Memcached::RES_DATA_EXISTS
if the item you are trying
to store has been modified since you last fetched it.