Example #1
0
 /**
  * Create a new Memcached store.
  *
  * @param  AbstractStorage $storage
  * @param  string $prefix
  */
 public function __construct(AbstractStorage $storage, $prefix = '')
 {
     $this->storage = $storage;
     parent::__construct($storage->getPrefix() . $prefix);
 }