Lavender\Cloud\Sina\Cache\KvdbStore::put PHP Method

put() public method

Store an item in the cache for a given number of minutes.
public put ( string $key, mixed $value, $minutes ) : void
$key string
$value mixed
return void
    public function put($key, $value, $minutes = 0)
    {
        $this->kvdb->set($this->prefix . $key, $value);
    }