DoctrineCacheAdapter.php 989 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. namespace Aws;
  3. use Doctrine\Common\Cache\Cache;
  4. class DoctrineCacheAdapter implements CacheInterface, Cache
  5. {
  6. /** @var Cache */
  7. private $cache;
  8. public function __construct(Cache $cache)
  9. {
  10. $this->cache = $cache;
  11. }
  12. public function get($key)
  13. {
  14. return $this->cache->fetch($key);
  15. }
  16. public function fetch($key)
  17. {
  18. return $this->get($key);
  19. }
  20. public function set($key, $value, $ttl = 0)
  21. {
  22. return $this->cache->save($key, $value, $ttl);
  23. }
  24. public function save($key, $value, $ttl = 0)
  25. {
  26. return $this->set($key, $value, $ttl);
  27. }
  28. public function remove($key)
  29. {
  30. return $this->cache->delete($key);
  31. }
  32. public function delete($key)
  33. {
  34. return $this->remove($key);
  35. }
  36. public function contains($key)
  37. {
  38. return $this->cache->contains($key);
  39. }
  40. public function getStats()
  41. {
  42. return $this->cache->getStats();
  43. }
  44. }