Memcached::add

(PECL memcached >= 0.1.0)

Memcached::addAdd an item under a new key

Описание

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

Memcached::add() is similar to Memcached::set(), but the operation fails if the key already exists on the server.

Список параметров

key

Ключ, под которым сохраняется значение.

value

Сохраняемое значение.

expiration

Время хранения объекта, по умолчанию равно 0. Для более подробной информации смотрите Время хранения объекта.

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. The Memcached::getResultCode() will return Memcached::RES_NOTSTORED if the key already exists.

Смотрите также

Коментарии

<?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");
    }

?>
2015-06-17 12:27:10
http://php5.kiev.ua/manual/ru/memcached.add.html
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.
2019-05-22 11:57:00
http://php5.kiev.ua/manual/ru/memcached.add.html

    Поддержать сайт на родительском проекте КГБ