12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Symfony\Component\Cache\Adapter;
- use Symfony\Component\Cache\Marshaller\MarshallerInterface;
- use Symfony\Component\Cache\Traits\MemcachedTrait;
- class MemcachedAdapter extends AbstractAdapter
- {
- use MemcachedTrait;
- protected $maxIdLength = 250;
-
- public function __construct(\Memcached $client, string $namespace = '', int $defaultLifetime = 0, MarshallerInterface $marshaller = null)
- {
- $this->init($client, $namespace, $defaultLifetime, $marshaller);
- }
- }
|