/**
  * Get the instance
  * @return CacheService
  */
 public static function inst()
 {
     if (!self::$instance) {
         self::$instance = new CacheService();
     }
     return self::$instance;
 }