Memcached::add

(PECL memcached >= 0.1.0)

Memcached::addAdiciona um item em uma nova key

Descrição

public Memcached::add(string $key, mixed $value, int $expiration = 0): bool

Memcached::add() é semelhante a Memcached::set(), mas a operação falha se a key já existir no servidor.

Parâmetros

key

A chave sob a qual armazenar o valor.

value

O valor a ser armazenado.

expiration

O tempo de expiração padrão é 0. Consulte Tempos de Expiração para mais informações.

Valor Retornado

Retorna true em caso de sucesso ou false em caso de falha. O Memcached::getResultCode() retornará Memcached::RES_NOTSTORED se a key já existir.

Veja Também

add a note add a note

User Contributed Notes 2 notes

up
2
ilya dot chase at yandex dot ru
4 years ago
Note that this operation is atomic, means that it's safe from race condition operation (since memcached is running in single process). You can use this method for locks and can be sure that two requests will not get "true" simultaneously using this method.
up
-33
zhoujunwen888 at 126 dot com
8 years ago
<?php
/**
* Created by PhpStorm.
* User: zhoujunwen
* Date: 15/6/17
* Time: 下午4:51
*/
   
$mem  = new Memcached();

   
$mem->addServer('127.0.0.1',11211);
    if(
$mem->add("mystr","this is a memcache test!",3600)){
        echo 
'原始数据缓存成功!';
    }else{
        echo
'数据已存在:'.$mem->get("mystr");
    }

?>
To Top