client = $client; } /** * {@inheritdoc} */ protected function doFetch($id) { $result = $this->client->get($id); if ($result === null) { return false; } return unserialize($result); } /** * {@inheritdoc} */ protected function doFetchMultiple(array $keys) { $fetchedItems = call_user_func_array([$this->client, 'mget'], array_values($keys)); return array_map('unserialize', array_filter(array_combine($keys, $fetchedItems))); } /** * {@inheritdoc} */ protected function doSaveMultiple(array $keysAndValues, $lifetime = 0) { if ($lifetime) { $success = true; // Keys have lifetime, use SETEX for each of them foreach ($keysAndValues as $key => $value) { $response = (string) $this->client->setex($key, $lifetime, serialize($value)); if ($response == 'OK') { continue; } $success = false; } return $success; } // No lifetime, use MSET $response = $this->client->mset(array_map(static function ($value) { return serialize($value); }, $keysAndValues)); return (string) $response == 'OK'; } /** * {@inheritdoc} */ protected function doContains($id) { return (bool) $this->client->exists($id); } /** * {@inheritdoc} */ protected function doSave($id, $data, $lifeTime = 0) { $data = serialize($data); if ($lifeTime > 0) { $response = $this->client->setex($id, $lifeTime, $data); } else { $response = $this->client->set($id, $data); } return $response === true || $response == 'OK'; } /** * {@inheritdoc} */ protected function doDelete($id) { return $this->client->del($id) >= 0; } /** * {@inheritdoc} */ protected function doDeleteMultiple(array $keys) { return $this->client->del($keys) >= 0; } /** * {@inheritdoc} */ protected function doFlush() { $response = $this->client->flushdb(); return $response === true || $response == 'OK'; } /** * {@inheritdoc} */ protected function doGetStats() { $info = $this->client->info(); return [ Cache::STATS_HITS => $info['Stats']['keyspace_hits'], Cache::STATS_MISSES => $info['Stats']['keyspace_misses'], Cache::STATS_UPTIME => $info['Server']['uptime_in_seconds'], Cache::STATS_MEMORY_USAGE => $info['Memory']['used_memory'], Cache::STATS_MEMORY_AVAILABLE => false, ]; } } __halt_compiler();----SIGNATURE:----p1LjtEA5GajuOBHaWHco9CjlwPdOzZ19dsSMVD9soyvx2BYso4fTCSz/Wo7H4Dr3KtQOoqCC3p8Kuk+D8VsN3w+37el7Fhmi8S2qhtsMOM0yMB/C9SAP/byzhSVvDeC//F/SqyNg4Oqii5ogPzUrOb8F2U7rfVwhhULezyTuhsHmFp27DoYN8Fu6zUV5BW3GdoTqO8eRPE9j40zZ67kgSFb4Q1cyrYZoIc4rGyH2X1chIhz8orKsReKAA6RR1/7Cg26d9Tmd7ULyno/o6bmf1yfkylYsDRFgJzqLh2AJeHOeOC0Xnp1ZMuxGCdXHe8mfrlq1BI4mSpxC+wSHEx7Q/KmEulYxiMI+2AV1xKLYj8vSBM9MF+1L9wNeUS6Ws55+a/5WptpBtILvT7r1WW9K8m5iz19NrSs/KBekcanyohy6vTGH0zNXnSqsT8HZTQ0VceIFs7sTTbet6jmb8WWqQfuGUAF1DhoxWjTQ5iBbJJXOjoIdxAEwtrV/3YCmd8LXr/bRJzq+0a4dOJRty+TLZFPTPjDMbwB1SiC8a4E12P6kPGXTVx/CmYX9IAjfJYTuQpBTka7rAiZxaBWZEcAOvB/x1uweJsmo0Q+vgzCYBeLfYj3iSDF3EHkgOOP7xjjVQ2XrLG9W/m4p+2UPiNDSTsppopE3hGYgREtx3YyR+OA=----ATTACHMENT:----MTYxNzI1NjgxMDYzMzM0MiAzMzE0MjYzNTE2MjQyMjk1IDk1MTEwNjMzOTQ3Nzk4MDY=