Metadata-Version: 2.1
Name: memorylru
Version: 1.0.6
Home-page: https://github.com/vangheem/memorylru
License: BSD
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown

# Introduction

Fork of https://github.com/plone/guillotina/tree/master/guillotina/contrib/cache into
its own package.

This package provides an LRU cache that is constrained by the size, in-memory of the
objects in the cache.

```python
from memorylru import LRU

lru = LRU(1024 * 1024 * 50)

lru['foo'] = 'bar'
```
