update : 2015.11.03
php.shukuma.com

검색:
 
 
Add an item under a new key

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.

참고