cache.php 962 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 ( ! array_key_exists($driver, static::$drivers))
  18. {
  19. if (is_null($driver))
  20. {
  21. $driver = Config::get('cache.driver');
  22. }
  23. static::$drivers[$driver] = Cache\Factory::make($driver);
  24. }
  25. return static::$drivers[$driver];
  26. }
  27. /**
  28. * Pass all other methods to the default driver.
  29. */
  30. public static function __callStatic($method, $parameters)
  31. {
  32. // Passing method calls to the driver instance provides a better API for the
  33. // developer. For instance, instead of saying Cache::driver()->foo(), we can
  34. // now just say Cache::foo().
  35. return call_user_func_array(array(static::driver(), $method), $parameters);
  36. }
  37. }