/**
  * @return DataStore
  */
 private static function get_fs_cache()
 {
     if (self::$fs_cache === null) {
         self::$fs_cache = DataStoreFactory::get_filesystem_store(__CLASS__);
     }
     return self::$fs_cache;
 }