skillfed

pylru

A least recently used (LRU) cache implementation

pylru v1.3.1 459.4K downloads/30d#6,543 on PyPI
Permissive license MIT Active released

What it is and what it does

Pylru is a pure-Python LRU cache implementation that maintains a fixed-size collection of key-value pairs, automatically evicting the least recently used item when capacity is reached. It provides a dictionary-like interface for direct caching, plus two wrapper classes—WriteThroughCacheManager and WriteBackCacheManager—that compose an LRU cache with any dict-like object (such as a remote store or database) to transparently cache reads and writes. Write-through updates the underlying store immediately; write-back defers store updates until eviction or explicit sync.

The package is written in pure Python with no external dependencies, making it lightweight and portable. All core operations (lookup, insert, delete) run in constant time. It supports optional callbacks on eviction, iteration over keys/values in LRU order, and resizing the cache at runtime. The cache is scan-resistant when using iteration methods, and both the cache and wrapper classes can be used as context managers.

Use it for:

  • Cache expensive function results or API calls to reduce latency and improve response times
  • Wrap a slow backend storage or database with write-through caching to speed up repeated reads
  • Implement write-back caching for batch updates, deferring writes to the store until cache eviction
  • Build a bounded in-memory cache for web application session data or computed results
  • Use as a decorator or wrapper to memoize function outputs with a fixed memory footprint

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides a pure-Python LRU (least recently used) cache with constant-time lookup, insert, and delete operations, plus wrapper classes for caching access to dict-like objects and functions.

Yes. Pylru is a stable, dependency-free LRU cache with a clean API and no known vulnerabilities. Install it if you need a simple, pure-Python caching layer with constant-time operations and optional write-through or write-back semantics for dict-like backends. Skip it if you only need basic function memoization (functools.lru_cache is built-in) or if you require thread-safety guarantees.

Install

pylru on PyPI

pip

pip install pylru

uv

uv add pylru

poetry

poetry add pylru

Installing pylru

Before you install

No runtime dependencies and low install friction. Marked as active maintenance with a recent release in 2026-04. Requires Python 3.3 or later.

License in practice

MIT license permits use, modification, and distribution with minimal restrictions, making it suitable for both open-source and commercial projects.

Quickstart

import pylru

# Create a cache with size 100
cache = pylru.lrucache(100)

# Use it like a dict
cache['key'] = 'value'
print(cache['key'])  # Lookup moves key to most-recently-used

# Or wrap a dict-like object with write-through caching
store = {}  # Any dict-like object
cached = pylru.lruwrap(store, 100)
cached['key'] = 'value'

Verify before relying

  • Performance characteristics compared to functools.lru_cache or other caching libraries in typical workloads
  • Thread-safety guarantees or limitations when used in concurrent environments

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.3)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance actively maintained — 130 days since the last release
First released
Downloads 459,424/month — #6,543 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pylru-1.3.1-py3-none-any.whl

Development Status :: 5 - Production/StableIntended Audience :: DevelopersOperating System :: OS IndependentProgramming Language :: Python :: 3Topic :: Software Development :: Libraries :: Python Modules

Tags

lru cache pythonleast recently used cachecaching decoratordict-like cachefunction memoizationwrite-through cachewrite-back cache
cachingperformancedata-structures

More Python Modules packages