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

set() public method

public set ( string $key, string $value ) : void
$key string
$value string
return void
    public function set($key, $value)
    {
        /**
         * @var \ManaPHP\Store\Adapter\Db\Model $model
         */
        $model = new $this->_model();
        $model->hash = md5($key);
        $model->key = $key;
        $model->value = $value;
        $model->save();
    }