cache.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?php namespace System;
  2. class Cache {
  3. /**
  4. * All of the active cache drivers.
  5. *
  6. * @var Cache\Driver
  7. * @see driver
  8. */
  9. public static $drivers = array();
  10. /**
  11. * Get a cache driver instance.
  12. *
  13. * If no driver name is specified, the default cache driver will be returned
  14. * as defined in the cache configuration file.
  15. *
  16. * @param string $driver
  17. * @return Cache\Driver
  18. */
  19. public static function driver($driver = null)
  20. {
  21. if (is_null($driver)) $driver = Config::get('cache.driver');
  22. if ( ! array_key_exists($driver, static::$drivers))
  23. {
  24. switch ($driver)
  25. {
  26. case 'file':
  27. return static::$drivers[$driver] = new Cache\File;
  28. case 'memcached':
  29. return static::$drivers[$driver] = new Cache\Memcached;
  30. case 'apc':
  31. return static::$drivers[$driver] = new Cache\APC;
  32. default:
  33. throw new \Exception("Cache driver [$driver] is not supported.");
  34. }
  35. }
  36. return static::$drivers[$driver];
  37. }
  38. /**
  39. * Get an item from the cache.
  40. *
  41. * If the cached item doesn't exist, the specified default value will be returned.
  42. *
  43. * <code>
  44. * // Get the "name" item from the cache
  45. * $name = Cache::get('name');
  46. *
  47. * // Get the "name" item, but return "Fred" if it doesn't exist
  48. * $name = Cache::get('name', 'Fred');
  49. * </code>
  50. *
  51. * The driver may also be specified:
  52. *
  53. * <code>
  54. * $name = Cache::get('name', null, 'memcached');
  55. * </code>
  56. *
  57. * @param string $key
  58. * @param mixed $default
  59. * @param string $driver
  60. * @return mixed
  61. */
  62. public static function get($key, $default = null, $driver = null)
  63. {
  64. if (is_null($item = static::driver($driver)->get($key)))
  65. {
  66. return is_callable($default) ? call_user_func($default) : $default;
  67. }
  68. return $item;
  69. }
  70. /**
  71. * Get an item from the cache. If the item doesn't exist in the cache, store
  72. * the default value in the cache and return it.
  73. *
  74. * <code>
  75. * // Get the name item. If it doesn't exist, store "Fred" for 30 minutes
  76. * $name = Cache::remember('name', 'Fred', 30);
  77. *
  78. * // Closures may also be used as default values
  79. * $name = Cache::remember('votes', function() {return Vote::count();}, 30);
  80. * </code>
  81. *
  82. * @param string $key
  83. * @param mixed $default
  84. * @param int $minutes
  85. * @param string $driver
  86. * @return mixed
  87. */
  88. public static function remember($key, $default, $minutes, $driver = null)
  89. {
  90. if ( ! is_null($item = static::get($key, null, $driver))) return $item;
  91. $default = is_callable($default) ? call_user_func($default) : $default;
  92. static::driver($driver)->put($key, $default, $minutes);
  93. return $default;
  94. }
  95. /**
  96. * Pass all other methods to the default driver.
  97. *
  98. * Passing method calls to the driver instance provides a better API for the
  99. * developer. For instance, instead of saying Cache::driver()->foo(), we can
  100. * just say Cache::foo().
  101. */
  102. public static function __callStatic($method, $parameters)
  103. {
  104. return call_user_func_array(array(static::driver(), $method), $parameters);
  105. }
  106. }