Skip to main content

LRU Cache with eviction callback

Project description

We can use Python built-in functions.lru_cache, but when a cached item is evicted, there is no chance to release corresponding resources.

This LRU Cache with callback feature provides the similar usage as functions.lru_cache with decorator @lru_cache. Plus, it can task a eviction_callback function to do clean works. The function signature is callback(key, value).

Basic LRU Cache

@lru_cache(3)
def fetch(x):
    print('miss:', x, end='')
    return x + 1


for i in [1, 2, 3, 1, 2, 4, 3, 2, 1]:
    print(f'get data for {i}: ', end='')
    fetch(i)
    print()

Output:

get data for 1: miss: 1
get data for 2: miss: 2
get data for 3: miss: 3
get data for 1:
get data for 2:
get data for 4: miss: 4
get data for 3: miss: 3
get data for 2:
get data for 1: miss: 1

LRU Cache with callback for eviction

def eviction_callback(key, value):
    # release resources
    print(f"evicted key: {key}, {value}", end='')


@lru_cache(3, evict_callback=eviction_callback)
def fetch(x):
    print(f'miss: {x}, ', end='')
    return x + 1


for i in [1, 2, 3, 1, 2, 4, 3, 2, 1]:
    print(f'get data for {i}: ', end='')
    fetch(i)
    print()

Output:

get data for 1: miss: 1,
get data for 2: miss: 2,
get data for 3: miss: 3,
get data for 1:
get data for 2:
get data for 4: miss: 4, evicted key: 3, 4
get data for 3: miss: 3, evicted key: 1, 2
get data for 2:
get data for 1: miss: 1, evicted key: 4, 5

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

callback_lru_cache-0.0.7-py3-none-any.whl (2.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page