cache.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. Cache drivers are singletons.
  11. *
  12. * @param string $driver
  13. * @return Cache\Driver
  14. */
  15. public static function driver($driver = null)
  16. {
  17. if (is_null($driver))
  18. {
  19. $driver = Config::get('cache.driver');
  20. }
  21. if ( ! array_key_exists($driver, static::$drivers))
  22. {
  23. static::$drivers[$driver] = Cache\Factory::make($driver);
  24. }
  25. return static::$drivers[$driver];
  26. }
  27. /**
  28. * Get an item from the cache.
  29. *
  30. * @param string $key
  31. * @param mixed $default
  32. * @param string $driver
  33. * @return mixed
  34. */
  35. public static function get($key, $default = null, $driver = null)
  36. {
  37. $item = static::driver($driver)->get($key);
  38. if (is_null($item))
  39. {
  40. return is_callable($default) ? call_user_func($default) : $default;
  41. }
  42. return $item;
  43. }
  44. /**
  45. * Pass all other methods to the default driver.
  46. *
  47. * Passing method calls to the driver instance provides a better API for the
  48. * developer. For instance, instead of saying Cache::driver()->foo(), we can
  49. * now just say Cache::foo().
  50. */
  51. public static function __callStatic($method, $parameters)
  52. {
  53. return call_user_func_array(array(static::driver(), $method), $parameters);
  54. }
  55. }