19 declare(strict_types=1);
39 if (!class_exists(\Memcached::class)) {
51 return class_exists(\Memcached::class) && $this->
server !==
null && $this->
server->getVersion() !==
false;
56 return $this->
server->get($this->
buildKey($container, $key)) !==
false;
59 public function get(
string $container,
string $key): ?
string 64 public function set(
string $container,
string $key,
string $value,
int $ttl):
void 66 $this->
server->set($this->
buildKey($container, $key), $value, $ttl);
69 public function delete(
string $container,
string $key):
void 77 foreach ($this->
server->getAllKeys() as $key) {
78 if (str_starts_with((
string) $key, $prefix)) {
79 $this->
server->set($key,
false, 0);
82 foreach ($this->
server->getAllKeys() as $key) {
83 if (str_starts_with((
string) $key, $prefix)) {
89 $this->
server->flushBuffers();
100 $this->
server = new \Memcached(self::PERSISTENT_ID);
102 foreach ($nodes as $node) {
106 $node->getWeight() ?? 100 / count($nodes)
buildKey(string $container, string $key)
buildContainerPrefix(string $container)
server()
description: > This example shows how a Progress Bar can be rendered and updated by the server...
__construct(Config $config)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
has(string $container, string $key)
flushContainer(string $container)
__construct(Container $dic, ilPlugin $plugin)
initServer(Config $config)