CacheEngine_APC::addValue PHP Méthode

addValue() public méthode

Returns false if the key already existed and does not overwrite the existing key.
public addValue ( $p_key, $p_value, $p_ttl ) : boolean
$p_key
$p_value
Résultat boolean
    public function addValue($p_key, $p_value, $p_ttl = 0)
    {
        return apc_add($p_key, $p_value, $p_ttl);
    }