Skip to content

Instantly share code, notes, and snippets.

@moh-affan
Forked from Morreski/timed_cache.py
Created September 3, 2024 00:29
Show Gist options
  • Select an option

  • Save moh-affan/63e8b8823b607d47575dafe1a9d14691 to your computer and use it in GitHub Desktop.

Select an option

Save moh-affan/63e8b8823b607d47575dafe1a9d14691 to your computer and use it in GitHub Desktop.
Python lru_cache with timeout
from datetime import datetime, timedelta
import functools
def timed_cache(**timedelta_kwargs):
def _wrapper(f):
update_delta = timedelta(**timedelta_kwargs)
next_update = datetime.utcnow() + update_delta
# Apply @lru_cache to f with no cache size limit
f = functools.lru_cache(None)(f)
@functools.wraps(f)
def _wrapped(*args, **kwargs):
nonlocal next_update
now = datetime.utcnow()
if now >= next_update:
f.cache_clear()
next_update = now + update_delta
return f(*args, **kwargs)
return _wrapped
return _wrapper
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment