CacheInterface.php 755 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace Aws;
  3. /**
  4. * Represents a simple cache interface.
  5. */
  6. interface CacheInterface
  7. {
  8. /**
  9. * Get a cache item by key.
  10. *
  11. * @param string $key Key to retrieve.
  12. *
  13. * @return mixed|null Returns the value or null if not found.
  14. */
  15. public function get($key);
  16. /**
  17. * Set a cache key value.
  18. *
  19. * @param string $key Key to set
  20. * @param mixed $value Value to set.
  21. * @param int $ttl Number of seconds the item is allowed to live. Set
  22. * to 0 to allow an unlimited lifetime.
  23. */
  24. public function set($key, $value, $ttl = 0);
  25. /**
  26. * Remove a cache key.
  27. *
  28. * @param string $key Key to remove.
  29. */
  30. public function remove($key);
  31. }