cache.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. if ( ! array_key_exists($driver, static::$drivers))
  18. {
  19. // --------------------------------------------------
  20. // If no driver was specified, use the default.
  21. // --------------------------------------------------
  22. if (is_null($driver))
  23. {
  24. $driver = Config::get('cache.driver');
  25. }
  26. // --------------------------------------------------
  27. // Create the 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. return call_user_func_array(array(static::driver(), $method), $parameters);
  39. }
  40. }