/**
  * Connects to the memcache server set in the config
  */
 private function connect()
 {
     if (self::$memcache == null) {
         self::$memcache = new MemCachedClient(array(CONFIG_MEMCACHE_HOST . ':' . CONFIG_MEMCACHE_PORT));
     }
 }