• Clears all entries from the in-memory manga cache. Logs operation before and after clearing.

    Returns void

    export function clearMangaCache(): void {
    const keyCount = Object.keys(mangaCache).length;
    console.info(
    `[MangaSearchService] 🗑️ Clearing manga cache: ${keyCount} entries`,
    );

    for (const key of Object.keys(mangaCache)) {
    delete mangaCache[key];
    }

    console.info("[MangaSearchService] ✅ Manga cache cleared successfully");
    }