cache.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 the cache driver instance.
  11. *
  12. * @param string $driver
  13. * @return Cache\Driver
  14. */
  15. public static function driver($driver = null)
  16. {
  17. // --------------------------------------------------
  18. // If the cache driver has already been instantiated,
  19. // we'll just return that existing instance.
  20. //
  21. // Otherwise, we'll instantiate a new one.
  22. // --------------------------------------------------
  23. if ( ! array_key_exists($driver, static::$drivers))
  24. {
  25. if (is_null($driver))
  26. {
  27. $driver = Config::get('cache.driver');
  28. }
  29. static::$drivers[$driver] = Cache\Factory::make($driver);
  30. }
  31. return static::$drivers[$driver];
  32. }
  33. /**
  34. * Pass all other methods to the default driver.
  35. */
  36. public static function __callStatic($method, $parameters)
  37. {
  38. // --------------------------------------------------
  39. // Passing method calls to the driver instance allows
  40. // a better API for the developer.
  41. //
  42. // For instance, instead of saying Cache::driver()->foo(),
  43. // we can now just say Cache::foo().
  44. // --------------------------------------------------
  45. return call_user_func_array(array(static::driver(), $method), $parameters);
  46. }
  47. }