Class QCacheProviderMemcache
	
	Cache provider based on Memcache
	 
	
		- 
			QAbstractCacheProvider
			
			
			
		
- 
			 QCacheProviderMemcache QCacheProviderMemcache
	Methods summary
	
		| 
			 public 
			
			
			 | 
		#
		__construct( array $objOptionsArray )
			Construct the Memcache based cache provider 
			Construct the Memcache based cache provider Parameters
					$objOptionsArrayarray of server options. Each item in the array contains an associative
arrays with options for the server to add to memcache | 
	
		| 
			 public 
			object
			
			 | 
		#
		Get( string $strKey )
			Get the object that has the given key from the cache 
			Get the object that has the given key from the cache Parameters
					$strKeythe key of the object in the cacheReturns
					object
				 | 
	
		| 
			 public 
			
			
			 | 
		#
		Set( string $strKey, object $objValue )
			Set the object into the cache with the given key 
			Set the object into the cache with the given key Parameters
					$strKeythe key to use for the object$objValuethe object to put in the cache | 
	
		| 
			 public 
			
			
			 | 
		#
		Delete( string $strKey )
			Delete the object that has the given key from the cache 
			Delete the object that has the given key from the cache Parameters
					$strKeythe key of the object in the cache | 
	
		| 
			 public 
			
			
			 | 
		#
		DeleteAll( )
			Invalidate all the objects in the cache 
			Invalidate all the objects in the cache |