Interface Cache
	
	An interface for classes implementing cache capabilities.
	 
	
	
	
		
			Methods summary
			
		
			| 
				 public 
				boolean
				
				 | 
			#
			exists(  $key )
				Checks if a key exists in a storage. 
				Checks if a key exists in a storage. ParametersReturns
						boolean
 trueif the key exists,falseotherwise. | 
		
			| 
				 public 
				mixed
				
				 | 
			#
			retrieve( string $key )
				Retrieves a value. Parameters
						$keyThe key of the value.Returns
						mixed
					 |