* Gets the cache instance, initializing it if needed
* @eturn Cache the cache instance, or null if nothing is cached
*/
staticfunctionload(){
//Checks extension is okay
if(!extension_loaded('memcached')){
if(extension_loaded('memcache')){
message_die(GENERAL_ERROR,"Can't initialize $engine cache engine.<br />PHP extension memcached not loaded.<br /><strong>!!! This class uses the Memcached extension AND NOT the Memcache extension (this one is loaded) !!!</strong>",'Cache');
}else{
message_die(GENERAL_ERROR,"Can't initialize $engine cache engine.<br />PHP extension memcached not loaded.",'Cache');