Browse Source

Added Cache::maybe method.

Taylor Otwell 13 years ago
parent
commit
9454927bd3
1 changed files with 24 additions and 0 deletions
  1. 24 0
      system/cache.php

+ 24 - 0
system/cache.php

@@ -50,6 +50,30 @@ class Cache {
 		return $item;
 	}
 
+	/**
+	 * Get an item from the cache. If it doesn't exist, store the default value
+	 * in the cache and return it.
+	 *
+	 * @param  string  $key
+	 * @param  mixed   $default
+	 * @param  int     $minutes
+	 * @param  string  $driver
+	 * @return mixed
+	 */
+	public static function maybe($key, $default, $minutes, $driver = null)
+	{
+		if ( ! is_null($item = static::get($key)))
+		{
+			return $item;
+		}
+
+		$default = is_callable($default) ? call_user_func($default) : $default;
+
+		static::driver($driver)->put($key, $default, $minutes);
+
+		return $default;
+	}
+
 	/**
 	 * Pass all other methods to the default driver.
 	 *