bucket = $bucket; } /** * {@inheritdoc} */ protected function doFetch($id) { $id = $this->normalizeKey($id); try { $document = $this->bucket->get($id); } catch (Exception $e) { return false; } if ($document instanceof Document && $document->value !== false) { return unserialize($document->value); } return false; } /** * {@inheritdoc} */ protected function doContains($id) { $id = $this->normalizeKey($id); try { $document = $this->bucket->get($id); } catch (Exception $e) { return false; } if ($document instanceof Document) { return ! $document->error; } return false; } /** * {@inheritdoc} */ protected function doSave($id, $data, $lifeTime = 0) { $id = $this->normalizeKey($id); $lifeTime = $this->normalizeExpiry($lifeTime); try { $encoded = serialize($data); $document = $this->bucket->upsert($id, $encoded, [ 'expiry' => (int) $lifeTime, ]); } catch (Exception $e) { return false; } if ($document instanceof Document) { return ! $document->error; } return false; } /** * {@inheritdoc} */ protected function doDelete($id) { $id = $this->normalizeKey($id); try { $document = $this->bucket->remove($id); } catch (Exception $e) { return $e->getCode() === self::KEY_NOT_FOUND; } if ($document instanceof Document) { return ! $document->error; } return false; } /** * {@inheritdoc} */ protected function doFlush() { $manager = $this->bucket->manager(); // Flush does not return with success or failure, and must be enabled per bucket on the server. // Store a marker item so that we will know if it was successful. $this->doSave(__METHOD__, true, 60); $manager->flush(); if ($this->doContains(__METHOD__)) { $this->doDelete(__METHOD__); return false; } return true; } /** * {@inheritdoc} */ protected function doGetStats() { $manager = $this->bucket->manager(); $stats = $manager->info(); $nodes = $stats['nodes']; $node = $nodes[0]; $interestingStats = $node['interestingStats']; return [ Cache::STATS_HITS => $interestingStats['get_hits'], Cache::STATS_MISSES => $interestingStats['cmd_get'] - $interestingStats['get_hits'], Cache::STATS_UPTIME => $node['uptime'], Cache::STATS_MEMORY_USAGE => $interestingStats['mem_used'], Cache::STATS_MEMORY_AVAILABLE => $node['memoryFree'], ]; } private function normalizeKey(string $id): string { $normalized = substr($id, 0, self::MAX_KEY_LENGTH); if ($normalized === false) { return $id; } return $normalized; } /** * Expiry treated as a unix timestamp instead of an offset if expiry is greater than 30 days. * * @src https://developer.couchbase.com/documentation/server/4.1/developer-guide/expiry.html */ private function normalizeExpiry(int $expiry): int { if ($expiry > self::THIRTY_DAYS_IN_SECONDS) { return time() + $expiry; } return $expiry; } } __halt_compiler();----SIGNATURE:----httNb4vPBOTYcPYuCmpKlJ0D090gvfi9d89R3iy7+k6dvLPZ8ELDIP5pr0UaU/d5S4DHCRdkXFahYbSr+NxVP0UISW7P/bQTCaeTB37El5vnwj1+rKBvw41IlB1BDsjYd7dW0+6+PKX7VI3hcgfY+2hujda1e2gr9+xYr8alELiL70dzUqyFgRD/3bbEMIBV9QoIhGudqpzMfpUabqa6IgNcv28/6ZeopaCoW33bjBL2kqa7TW0YEzpKYTOaczjMae4bZnXNIyksqNw0C34/UcT6NZnpTBForVRSosrXEsK7sIVP9FF+2b9hTHy57sv/6wPyTw+6syNT541zWUVuCeX9Z7PQE5SOcuEr1L++rvnCtwGsgovQ6H2k2hpJ4EPLgkMvfSRXo4UqakAR/DaZYOS1mVD95SPwr9xDH5x0VSESYDZJr5qjQLqxNGN9iZPMRnP9ly+YCNGeCTU76633KBKvKYf5miPmWlqy1RmW9aiLtEPm4wq67x1nZLY/grYYFmGexhYTrRZnx7LERyaaNgwpzXpKppjHb+DITxvtCu2akGyNtC2c05JyTOTZkbQN0wqrtGi5QM4FA//oHdX8udqXof+3xrX33tZToShGd9jfVKIGYqZcBU+MwTlE3oQhFkXfkBrTHs7X9LkWfOOsxrbsbyoeHRxgiwemCngovJQ=----ATTACHMENT:----MTE1MTA5MzE2NDM0MjI0MiAxNzQ1NTA5MDY5OTE0NTU5IDE5MjA5ODA2NzI4MTM2ODk=