| 1 | <?php |
||
| 13 | class StorageMemcachedCacheProvider implements ProviderInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * memcached server list |
||
| 17 | * |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | private $servers; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @Named("servers=memcached_servers") |
||
| 24 | * |
||
| 25 | * @see http://php.net/manual/en/memcached.addservers.php |
||
| 26 | */ |
||
| 27 | 1 | public function __construct(array $servers) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | 1 | public function get() |
|
| 44 | } |
||
| 45 |