ManaPHP\Store\Adapter\Db::exists PHP Method

exists() public method

public exists ( string $key ) : boolean
$key string
return boolean
    public function exists($key)
    {
        /**
         * @var \ManaPHP\Store\Adapter\Db\Model $model
         */
        $model = new $this->_model();
        return $model::exists(['hash' => md5($key)]);
    }