Psr16CacheAdapter.php 572 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Aws;
  3. use Psr\SimpleCache\CacheInterface as SimpleCacheInterface;
  4. class Psr16CacheAdapter implements CacheInterface
  5. {
  6. /** @var SimpleCacheInterface */
  7. private $cache;
  8. public function __construct(SimpleCacheInterface $cache)
  9. {
  10. $this->cache = $cache;
  11. }
  12. public function get($key)
  13. {
  14. return $this->cache->get($key);
  15. }
  16. public function set($key, $value, $ttl = 0)
  17. {
  18. $this->cache->set($key, $value, $ttl);
  19. }
  20. public function remove($key)
  21. {
  22. $this->cache->delete($key);
  23. }
  24. }