Metadata-Version: 2.4
Name: aiocache_pro
Version: 0.0.2
Summary: High-performance caching library with gevent and cython speedups
Author: Maksym
Author-email: 
License-Expression: Apache-2.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Cython
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: gevent
Requires-Dist: ujson
Requires-Dist: b64fx
Dynamic: classifier
Dynamic: requires-python

# aiocache-pro

**Fastest cache for production**:

- LRU / MRU / LFU / TTL caching strategies  
- Works with **gevent**  
- Custom keys support  
- Optimized with **C / Cython** for speed  

---

## Features

- **LRU (Least Recently Used)** – automatically removes least recently used items when maxsize is reached.  
- **MRU (Most Recently Used)** – removes most recently used items first.  
- **LFU (Least Frequently Used)** – removes items with the lowest access count.  
- **TTL (Time To Live)** – items expire automatically after a given time.  
- **Custom keys** – generate keys from function arguments.  
- **C optimization** – speed improvements via Cython.

---

## Installation

You can install from you:

```bash
pip install aiocache_pro
