CacheEngine_APC::hasValueKey PHP Method

hasValueKey() public method

Returns true if a value identified by the given key was stored in the cache.
public hasValueKey ( $p_key ) : mixed
return mixed
    public function hasValueKey($p_key)
    {
        return apc_fetch($p_key) !== false;
    }