MemcacheCache.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?php
  2. /*
  3. * $Id$
  4. *
  5. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  7. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  8. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  9. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  10. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  11. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  12. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  13. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  14. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  15. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  16. *
  17. * This software consists of voluntary contributions made by many individuals
  18. * and is licensed under the LGPL. For more information, see
  19. * <http://www.doctrine-project.org>.
  20. */
  21. namespace Doctrine\Common\Cache;
  22. use \Memcache;
  23. /**
  24. * Memcache cache driver.
  25. *
  26. * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  27. * @link www.doctrine-project.org
  28. * @since 2.0
  29. * @version $Revision: 3938 $
  30. * @author Benjamin Eberlei <kontakt@beberlei.de>
  31. * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
  32. * @author Jonathan Wage <jonwage@gmail.com>
  33. * @author Roman Borschel <roman@code-factory.org>
  34. * @author David Abdemoulaie <dave@hobodave.com>
  35. */
  36. class MemcacheCache extends AbstractCache
  37. {
  38. /**
  39. * @var Memcache
  40. */
  41. private $_memcache;
  42. /**
  43. * Sets the memcache instance to use.
  44. *
  45. * @param Memcache $memcache
  46. */
  47. public function setMemcache(Memcache $memcache)
  48. {
  49. $this->_memcache = $memcache;
  50. }
  51. /**
  52. * Gets the memcache instance used by the cache.
  53. *
  54. * @return Memcache
  55. */
  56. public function getMemcache()
  57. {
  58. return $this->_memcache;
  59. }
  60. /**
  61. * {@inheritdoc}
  62. */
  63. public function getIds()
  64. {
  65. $keys = array();
  66. $allSlabs = $this->_memcache->getExtendedStats('slabs');
  67. foreach ($allSlabs as $server => $slabs) {
  68. if (is_array($slabs)) {
  69. foreach (array_keys($slabs) as $slabId) {
  70. $dump = $this->_memcache->getExtendedStats('cachedump', (int) $slabId);
  71. if ($dump) {
  72. foreach ($dump as $entries) {
  73. if ($entries) {
  74. $keys = array_merge($keys, array_keys($entries));
  75. }
  76. }
  77. }
  78. }
  79. }
  80. }
  81. return $keys;
  82. }
  83. /**
  84. * {@inheritdoc}
  85. */
  86. protected function _doFetch($id)
  87. {
  88. return $this->_memcache->get($id);
  89. }
  90. /**
  91. * {@inheritdoc}
  92. */
  93. protected function _doContains($id)
  94. {
  95. return (bool) $this->_memcache->get($id);
  96. }
  97. /**
  98. * {@inheritdoc}
  99. */
  100. protected function _doSave($id, $data, $lifeTime = 0)
  101. {
  102. return $this->_memcache->set($id, $data, 0, (int) $lifeTime);
  103. }
  104. /**
  105. * {@inheritdoc}
  106. */
  107. protected function _doDelete($id)
  108. {
  109. return $this->_memcache->delete($id);
  110. }
  111. }