You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NullAdapter.php 2.5KB

2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Cache\Adapter;
  11. use Psr\Cache\CacheItemInterface;
  12. use Symfony\Component\Cache\CacheItem;
  13. use Symfony\Contracts\Cache\CacheInterface;
  14. /**
  15. * @author Titouan Galopin <galopintitouan@gmail.com>
  16. */
  17. class NullAdapter implements AdapterInterface, CacheInterface
  18. {
  19. private $createCacheItem;
  20. public function __construct()
  21. {
  22. $this->createCacheItem = \Closure::bind(
  23. function ($key) {
  24. $item = new CacheItem();
  25. $item->key = $key;
  26. $item->isHit = false;
  27. return $item;
  28. },
  29. $this,
  30. CacheItem::class
  31. );
  32. }
  33. /**
  34. * {@inheritdoc}
  35. */
  36. public function get(string $key, callable $callback, float $beta = null, array &$metadata = null)
  37. {
  38. $save = true;
  39. return $callback(($this->createCacheItem)($key), $save);
  40. }
  41. /**
  42. * {@inheritdoc}
  43. */
  44. public function getItem($key)
  45. {
  46. $f = $this->createCacheItem;
  47. return $f($key);
  48. }
  49. /**
  50. * {@inheritdoc}
  51. */
  52. public function getItems(array $keys = [])
  53. {
  54. return $this->generateItems($keys);
  55. }
  56. /**
  57. * {@inheritdoc}
  58. */
  59. public function hasItem($key)
  60. {
  61. return false;
  62. }
  63. /**
  64. * {@inheritdoc}
  65. */
  66. public function clear()
  67. {
  68. return true;
  69. }
  70. /**
  71. * {@inheritdoc}
  72. */
  73. public function deleteItem($key)
  74. {
  75. return true;
  76. }
  77. /**
  78. * {@inheritdoc}
  79. */
  80. public function deleteItems(array $keys)
  81. {
  82. return true;
  83. }
  84. /**
  85. * {@inheritdoc}
  86. */
  87. public function save(CacheItemInterface $item)
  88. {
  89. return false;
  90. }
  91. /**
  92. * {@inheritdoc}
  93. */
  94. public function saveDeferred(CacheItemInterface $item)
  95. {
  96. return false;
  97. }
  98. /**
  99. * {@inheritdoc}
  100. */
  101. public function commit()
  102. {
  103. return false;
  104. }
  105. /**
  106. * {@inheritdoc}
  107. */
  108. public function delete(string $key): bool
  109. {
  110. return $this->deleteItem($key);
  111. }
  112. private function generateItems(array $keys)
  113. {
  114. $f = $this->createCacheItem;
  115. foreach ($keys as $key) {
  116. yield $key => $f($key);
  117. }
  118. }
  119. }