Iconify for Svelte function: disableCache

This tutorial is part of Iconify for Svelte functions tutorial.

Function disableCache() disables caching in localStorage and sessionStorage.

When component retrieves new icons from API, icon data is stored in browser storage. Cache makes rendering faster because component can retrieve icons from cache instead of sending API query. Unlike API queries, cache is instant.

By default, localStorage is enabled, sessionStorage is disabled.

Usage

Function has the following parameter:

  • storage. Storage to disable.

Storage types

First parameter can be one of the following:

  • "local" for localStorage.
  • "session" for sessionStorage.
  • "all" for both localStorage and sessionStorage.

Examples

import { disableCache } from '@iconify/svelte';

// Disable caching in localStorage
disableCache('local');
import { disableCache } from '@iconify/svelte';

// Disable all caching
disableCache('all');

Notes

  • Enabling or disabling cache will not affect icon data already stored in cache. Icon data will always be loaded, regardless of setting. Setting affects only storing new icon data retrieved from API.
  • Setting affects only icon data loaded from API. Icon data loaded with addIcon() or addCollection() is not cached.
  • When both localStorage and sessionStorage are enabled, icon data is cached only in localStorage.