cache.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php namespace System;
  2. class Cache {
  3. /**
  4. * The active cache drivers.
  5. *
  6. * @var Cache\Driver
  7. */
  8. private 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. return (array_key_exists($driver, static::$drivers))
  25. ? static::$drivers[$driver]
  26. : static::$drivers[$driver] = Cache\Factory::make($driver);
  27. }
  28. /**
  29. * Get an item from the cache.
  30. *
  31. * @param string $key
  32. * @param mixed $default
  33. * @param string $driver
  34. * @return mixed
  35. */
  36. public static function get($key, $default = null, $driver = null)
  37. {
  38. if (array_key_exists($key, static::driver($driver)->items))
  39. {
  40. return static::driver($driver)->items[$key];
  41. }
  42. if (is_null($item = static::driver($driver)->get($key)))
  43. {
  44. return is_callable($default) ? call_user_func($default) : $default;
  45. }
  46. return $item;
  47. }
  48. /**
  49. * Get an item from the cache. If the item doesn't exist in the cache, store
  50. * the default value in the cache and return it.
  51. *
  52. * @param string $key
  53. * @param mixed $default
  54. * @param int $minutes
  55. * @param string $driver
  56. * @return mixed
  57. */
  58. public static function remember($key, $default, $minutes, $driver = null)
  59. {
  60. if ( ! is_null($item = static::get($key)))
  61. {
  62. return $item;
  63. }
  64. $default = is_callable($default) ? call_user_func($default) : $default;
  65. static::driver($driver)->put($key, $default, $minutes);
  66. return $default;
  67. }
  68. /**
  69. * Pass all other methods to the default driver.
  70. *
  71. * Passing method calls to the driver instance provides a better API for the
  72. * developer. For instance, instead of saying Cache::driver()->foo(), we can
  73. * now just say Cache::foo().
  74. */
  75. public static function __callStatic($method, $parameters)
  76. {
  77. return call_user_func_array(array(static::driver(), $method), $parameters);
  78. }
  79. }