Automatically Cache
This guide addresses how to use the panel.cache decorator to memoize (i.e., cache the output of) functions automatically.
The pn.cache decorator provides an easy way to cache the outputs of a function depending on its inputs and/ or Parameter dependencies (i.e., memoization).
If you've ever used the Python @lru_cache decorator, you will be familiar with this concept. However, the pn.cache functions support additional cache policys apart from LRU (least-recently used), including LFU (least-frequently-used) and 'FIFO' (first-in-first-out). This means that if the specified number of max_items is reached, Panel will automatically evict items from the cache based on this policy. Additionally, items can be deleted from the cache based on a ttl (time-to-live) value given in seconds.
Caching Functions
The pn.cache decorator can easily be combined with the different Panel APIs, including pn.bind and pn.depends, providing a powerful way to speed up your applications.
Once you have decorated your function with pn.cache, any call to load_data will be cached in memory until the max_items value is reached (i.e., you have loaded 10 different path values). At that point, the policy will determine which item is evicted.
The pn.cache decorator can easily be combined with pn.bind to speed up the rendering of your reactive components:
Caching Functions with Dependencies
The pn.cache decorator can easily be combined with pn.depends to speed up the rendering of your reactive components:
Caching Methods with Dependencies
Disk Caching
Disk backed caching persists cached results across server restarts, making it ideal for expensive operations like data loading or model inference.
Prerequisites
First, install the diskcache library:
Basic Disk Caching
To enable disk caching, set to_disk=True when decorating your function:
By default, cached values are stored in a ./cache directory relative to your application.
Configuring the Cache Path
You can customize where cached values are stored in three ways:
1. Inline configuration:
2. Global configuration with pn.extension:
3. Direct configuration:
Clearing the Cache
Once a function has been decorated with pn.cache, you can easily clear the cache by calling .clear() on that function, e.g., in the example above, you could call load_data.clear(). If you want to clear all caches, you may also call pn.state.clear_caches().
Per-session Caching
By default, any functions decorated or wrapped with pn.cache will use a global cache that will be reused across multiple sessions, i.e., multiple users visiting your app will all share the same cache. If instead, you want a session-local cache that only reuses cached outputs for the duration of each visit to your application, you can set pn.cache(..., per_session=True).