Lavender\Cloud\Sina\Cache\MemcacheStore::forever PHP Méthode

forever() public méthode

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