Remove specific URL from cache
Future<void> remove(String url) async { final key = _generateKey(url); _memoryCache.remove(key); if (_config.persistToDisk && _cacheFile != null) { await _saveToDisk(); } }