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

increment() public méthode

Increment the value of an item in the cache.
public increment ( string $key, mixed $value = 1 ) : void
$key string
$value mixed
Résultat void
    public function increment($key, $value = 1)
    {
        return $this->memcache->increment($this->prefix . $key, $value);
    }