cache.php 2.4 KB

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