ApcCache.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?php
  2. /*
  3. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  7. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  8. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  9. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  10. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  11. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  12. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  13. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  14. *
  15. * This software consists of voluntary contributions made by many individuals
  16. * and is licensed under the MIT license. For more information, see
  17. * <http://www.doctrine-project.org>.
  18. */
  19. namespace Doctrine\Common\Cache;
  20. /**
  21. * APC cache provider.
  22. *
  23. * @link www.doctrine-project.org
  24. * @deprecated since version 1.6, use ApcuCache instead
  25. * @since 2.0
  26. * @author Benjamin Eberlei <kontakt@beberlei.de>
  27. * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
  28. * @author Jonathan Wage <jonwage@gmail.com>
  29. * @author Roman Borschel <roman@code-factory.org>
  30. * @author David Abdemoulaie <dave@hobodave.com>
  31. */
  32. class ApcCache extends CacheProvider
  33. {
  34. /**
  35. * {@inheritdoc}
  36. */
  37. protected function doFetch($id)
  38. {
  39. return apc_fetch($id);
  40. }
  41. /**
  42. * {@inheritdoc}
  43. */
  44. protected function doContains($id)
  45. {
  46. return apc_exists($id);
  47. }
  48. /**
  49. * {@inheritdoc}
  50. */
  51. protected function doSave($id, $data, $lifeTime = 0)
  52. {
  53. return apc_store($id, $data, $lifeTime);
  54. }
  55. /**
  56. * {@inheritdoc}
  57. */
  58. protected function doDelete($id)
  59. {
  60. // apc_delete returns false if the id does not exist
  61. return apc_delete($id) || ! apc_exists($id);
  62. }
  63. /**
  64. * {@inheritdoc}
  65. */
  66. protected function doFlush()
  67. {
  68. return apc_clear_cache() && apc_clear_cache('user');
  69. }
  70. /**
  71. * {@inheritdoc}
  72. */
  73. protected function doFetchMultiple(array $keys)
  74. {
  75. return apc_fetch($keys) ?: [];
  76. }
  77. /**
  78. * {@inheritdoc}
  79. */
  80. protected function doSaveMultiple(array $keysAndValues, $lifetime = 0)
  81. {
  82. $result = apc_store($keysAndValues, null, $lifetime);
  83. return empty($result);
  84. }
  85. /**
  86. * {@inheritdoc}
  87. */
  88. protected function doGetStats()
  89. {
  90. $info = apc_cache_info('', true);
  91. $sma = apc_sma_info();
  92. // @TODO - Temporary fix @see https://github.com/krakjoe/apcu/pull/42
  93. if (PHP_VERSION_ID >= 50500) {
  94. $info['num_hits'] = isset($info['num_hits']) ? $info['num_hits'] : $info['nhits'];
  95. $info['num_misses'] = isset($info['num_misses']) ? $info['num_misses'] : $info['nmisses'];
  96. $info['start_time'] = isset($info['start_time']) ? $info['start_time'] : $info['stime'];
  97. }
  98. return array(
  99. Cache::STATS_HITS => $info['num_hits'],
  100. Cache::STATS_MISSES => $info['num_misses'],
  101. Cache::STATS_UPTIME => $info['start_time'],
  102. Cache::STATS_MEMORY_USAGE => $info['mem_size'],
  103. Cache::STATS_MEMORY_AVAILABLE => $sma['avail_mem'],
  104. );
  105. }
  106. }