Class ElggHMACCache
	
	
ElggHMACCache Store cached data in a temporary database, only used by the
HMAC stuff.
	 
	
		- 
			ElggCache
			
			 implements 
				ArrayAccess
			
			
		
- 
			 ElggHMACCache ElggHMACCache
	Methods summary
	
		| 
			 public 
			
			
			 | 
		#
		__construct( integer $max_age = 0 )
			
Set the Elgg cache. Parameters
					$max_ageinteger$max_age Maximum age in seconds, 0 if no limit.
Overrides | 
	
		| 
			 public 
			boolean
			
			 | 
		#
		save( string $key, string $data )
			
Save a key Parameters
					$keystring$key Name
$datastring$data Value
Returns
					boolean
 | 
	
		| 
			 public 
			string
			
			 | 
		#
		load( string $key, integer $offset = 0, integer $limit = null )
			
Load a key Parameters
					$keystring$key Name
$offsetinteger$offset Offset
$limitinteger$limit Limit
Returns
					string
 | 
	
		| 
			 public 
			boolean
			
			 | 
		#
		delete( string $key )
			
Invalidate a given key. ParametersReturns
					boolean
 | 
	
		| 
			 public 
			true
			
			 | 
		#
		clear( )
			
Clear out all the contents of the cache. 
			
Clear out all the contents of the cache. Not currently implemented in this cache type. Returns
					true
 | 
	
		| 
			 public 
			
			
			 |  | 
	
	
	Methods inherited from ElggCache
	
		| 
			__get(), 
			__isset(), 
			__set(), 
			__unset(), 
			add(), 
			getVariable(), 
			offsetExists(), 
			offsetGet(), 
			offsetSet(), 
			offsetUnset(), 
			setVariable()
		 |