删除指定缓存
@override Future<void> delete(String key) async { if (_database == null) await initialize(); await _database!.deleteCache(key); }