Browse Source

Allow cache class to look for existing items in driver's items array.

Taylor Otwell 13 years ago
parent
commit
44a48256c7
1 changed files with 5 additions and 0 deletions
  1. 5 0
      system/cache.php

+ 5 - 0
system/cache.php

@@ -40,6 +40,11 @@ class Cache {
 	 */	
 	public static function get($key, $default = null, $driver = null)
 	{
+		if (array_key_exists($key, static::driver($driver)->items))
+		{
+			return static::driver($driver)->items[$key];
+		}
+
 		if (is_null($item = static::driver($driver)->get($key)))
 		{
 			return is_callable($default) ? call_user_func($default) : $default;