Lavender\Cloud\Sina\Cache\MemcacheStore::forever PHP Method

forever() public method

Store an item in the cache indefinitely.
public forever ( string $key, mixed $value ) : void
$key string
$value mixed
return void
    public function forever($key, $value)
    {
        return $this->put($key, $value, 0);
    }