Horde_Kolab_Storage_List_Cache::hasLongTerm PHP 메소드

hasLongTerm() 공개 메소드

Is the specified long term data available in the cache?
public hasLongTerm ( string $key ) : boolean
$key string The long term key.
리턴 boolean True in case cached data is available.
    public function hasLongTerm($key)
    {
        $this->_load();
        return isset($this->_data[self::LONG_TERM][$key]);
    }