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

__construct() public method

Create a new Memcache store.
public __construct ( Memcache $memcache, string $prefix = '' ) : void
$memcache Memcache
$prefix string
return void
    public function __construct(Memcache $memcache, $prefix = '')
    {
        $this->memcache = $memcache;
        $this->prefix = strlen($prefix) > 0 ? $prefix . ':' : '';
    }