cache.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 (is_null($item = static::driver($driver)->get($key)))
  39. {
  40. return is_callable($default) ? call_user_func($default) : $default;
  41. }
  42. return $item;
  43. }
  44. /**
  45. * Get an item from the cache. If the item doesn't exist in the cache, store
  46. * the default value in the cache and return it.
  47. *
  48. * @param string $key
  49. * @param mixed $default
  50. * @param int $minutes
  51. * @param string $driver
  52. * @return mixed
  53. */
  54. public static function remember($key, $default, $minutes, $driver = null)
  55. {
  56. if ( ! is_null($item = static::get($key)))
  57. {
  58. return $item;
  59. }
  60. $default = is_callable($default) ? call_user_func($default) : $default;
  61. static::driver($driver)->put($key, $default, $minutes);
  62. return $default;
  63. }
  64. /**
  65. * Pass all other methods to the default driver.
  66. *
  67. * Passing method calls to the driver instance provides a better API for the
  68. * developer. For instance, instead of saying Cache::driver()->foo(), we can
  69. * now just say Cache::foo().
  70. */
  71. public static function __callStatic($method, $parameters)
  72. {
  73. return call_user_func_array(array(static::driver(), $method), $parameters);
  74. }
  75. }