downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Memcached::casByKey> <Memcached::appendByKey
Last updated: Fri, 20 Nov 2009

view this page in

Memcached::cas

(PECL memcached >= 0.1.0)

Memcached::casCompare and swap an item

Descrierea

public bool Memcached::cas ( double $cas_token , string $key , mixed $value [, int $expiration ] )

Memcached::cas() performs a "check and set" operation, so that the item will be stored only if no other client has updated it since it was last fetched by this client. The check is done via the cas_token parameter which is a unique 64-bit value assigned to the existing item by memcache. See the documentation for Memcached::get* methods for how to obtain this token. Note that the token is represented as a double due to the limitations of PHP's integer space.

Parametri

cas_token

Unique value associated with the existing item. Generated by memcache.

key

Cheia sub care se stochează valoarea.

value

Valoarea pentru a fi stocată.

expiration

Timpul expirării, implicit este 0. Accesaţi Timpurile de expirare pentru informaţii suplimentare.

Valorile întroarse

Întoarce valoarea TRUE în cazul succesului sau FALSE în cazul eşecului. 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.

Exemple

Example #1 Memcached::cas() example

<?php
$m 
= new Memcached();
$m->addServer('localhost'11211);

do {
    
/* fetch IP list and its token */
    
$ips $m->get('ip_block'null$cas);
    
/* if list doesn't exist yet, create it and do
       an atomic add which will fail if someone else already added it */
    
if ($m->getResultCode() == Memcached::RES_NOTFOUND) {
        
$ips = array($_SERVER['REMOTE_ADDR']);
        
$m->add('ip_block'$ips);
    
/* otherwise, add IP to the list and store via compare-and-swap
       with the token, which will fail if someone else updated the list */
    
} else { 
        
$ips[] = $_SERVER['REMOTE_ADDR'];
        
$m->cas($cas'ip_block'$ips);
    }   
} while (
$m->getResultCode() != Memcached::RES_SUCCESS);

?>

Vedeţi de asemenea



add a note add a note User Contributed Notes
Memcached::cas
There are no user contributed notes for this page.

Memcached::casByKey> <Memcached::appendByKey
Last updated: Fri, 20 Nov 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites