XCache.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\caching;
  8. /**
  9. * XCache provides XCache caching in terms of an application component.
  10. *
  11. * To use this application component, the [XCache PHP extension](http://xcache.lighttpd.net/) must be loaded.
  12. * Also note that the [[flush()]] functionality will work correctly only if "xcache.admin.enable_auth"
  13. * is set to "Off" in php.ini.
  14. *
  15. * See [[Cache]] for common cache operations that XCache supports.
  16. *
  17. * For more details and usage information on Cache, see the [guide article on caching](guide:caching-overview).
  18. *
  19. * @author Qiang Xue <qiang.xue@gmail.com>
  20. * @since 2.0
  21. */
  22. class XCache extends Cache
  23. {
  24. /**
  25. * Checks whether a specified key exists in the cache.
  26. * This can be faster than getting the value from the cache if the data is big.
  27. * Note that this method does not check whether the dependency associated
  28. * with the cached data, if there is any, has changed. So a call to [[get]]
  29. * may return false while exists returns true.
  30. * @param mixed $key a key identifying the cached value. This can be a simple string or
  31. * a complex data structure consisting of factors representing the key.
  32. * @return bool true if a value exists in cache, false if the value is not in the cache or expired.
  33. */
  34. public function exists($key)
  35. {
  36. $key = $this->buildKey($key);
  37. return xcache_isset($key);
  38. }
  39. /**
  40. * Retrieves a value from cache with a specified key.
  41. * This is the implementation of the method declared in the parent class.
  42. * @param string $key a unique key identifying the cached value
  43. * @return mixed|false the value stored in cache, false if the value is not in the cache or expired.
  44. */
  45. protected function getValue($key)
  46. {
  47. return xcache_isset($key) ? xcache_get($key) : false;
  48. }
  49. /**
  50. * Stores a value identified by a key in cache.
  51. * This is the implementation of the method declared in the parent class.
  52. *
  53. * @param string $key the key identifying the value to be cached
  54. * @param mixed $value the value to be cached. Most often it's a string. If you have disabled [[serializer]],
  55. * it could be something else.
  56. * @param int $duration the number of seconds in which the cached value will expire. 0 means never expire.
  57. * @return bool true if the value is successfully stored into cache, false otherwise
  58. */
  59. protected function setValue($key, $value, $duration)
  60. {
  61. return xcache_set($key, $value, $duration);
  62. }
  63. /**
  64. * Stores a value identified by a key into cache if the cache does not contain this key.
  65. * This is the implementation of the method declared in the parent class.
  66. *
  67. * @param string $key the key identifying the value to be cached
  68. * @param mixed $value the value to be cached. Most often it's a string. If you have disabled [[serializer]],
  69. * it could be something else.
  70. * @param int $duration the number of seconds in which the cached value will expire. 0 means never expire.
  71. * @return bool true if the value is successfully stored into cache, false otherwise
  72. */
  73. protected function addValue($key, $value, $duration)
  74. {
  75. return !xcache_isset($key) ? $this->setValue($key, $value, $duration) : false;
  76. }
  77. /**
  78. * Deletes a value with the specified key from cache
  79. * This is the implementation of the method declared in the parent class.
  80. * @param string $key the key of the value to be deleted
  81. * @return bool if no error happens during deletion
  82. */
  83. protected function deleteValue($key)
  84. {
  85. return xcache_unset($key);
  86. }
  87. /**
  88. * Deletes all values from cache.
  89. * This is the implementation of the method declared in the parent class.
  90. * @return bool whether the flush operation was successful.
  91. */
  92. protected function flushValues()
  93. {
  94. for ($i = 0, $max = xcache_count(XC_TYPE_VAR); $i < $max; $i++) {
  95. if (xcache_clear_cache(XC_TYPE_VAR, $i) === false) {
  96. return false;
  97. }
  98. }
  99. return true;
  100. }
  101. }