Skip to main content

A context-aware caching library with customizable policies and metrics.

Project description

AwareCache

awarecache is a versatile caching library that provides context-aware caching with customizable eviction policies and detailed cache metrics. It allows you to manage different caches for different contexts with various caching strategies, and track performance metrics such as cache hits and misses.

Features

  • Context-Aware Caching: Manage different caches for different contexts.
  • Customizable Eviction Policies: Choose from LRU, LFU, MRU, FIFO, TinyLFU, SLRU, and Clock caching strategies.
  • Cache Metrics: Track cache performance with hit and miss statistics.

Use Cases

  1. Web Applications: Manage different caches for user sessions, API responses, and static content with context-specific eviction policies.
  2. Data Processing Pipelines: Use specialized caches for different stages of data processing to optimize performance and resource usage.
  3. Microservices: Maintain separate caches for different services or components, each with its own eviction strategy.

Installation

You can install awarecache via pip:

pip install awarecache

Usage

Basic Example

Here's a quick example to get you started:

from awarecache import Cache

# Create a Cache instance with default LRU policy and a capacity of 100
cache = Cache()

# Set context-specific policies
cache.set_context_policy('user_sessions', 'LRU', capacity=50)
cache.set_context_policy('api_responses', 'LFU', capacity=200)

# Add and retrieve items from the 'user_sessions' cache
cache.put('session1', 'data1', context='user_sessions')
print(cache.get('session1', context='user_sessions'))  # Output: data1

# Add and retrieve items from the 'api_responses' cache
cache.put('response1', 'data2', context='api_responses')
print(cache.get('response1', context='api_responses'))  # Output: data2

# Get cache performance metrics
print(cache.get_metrics())  # Output: {'hits': 2, 'misses': 0}

Supported Eviction Policies

  • LRU (Least Recently Used): Removes the least recently accessed item.
  • LFU (Least Frequently Used): Removes the least frequently accessed item.
  • MRU (Most Recently Used): Removes the most recently accessed item.
  • FIFO (First In, First Out): Removes the oldest item.
  • TinyLFU: A variant of LFU that uses a probabilistic approach for cache eviction.
  • SLRU (Segmented LRU): Combines LRU with a segmented approach to differentiate between frequently and infrequently accessed items.
  • Clock: A circular buffer approach to manage cache items with a clock-like replacement strategy.

Project details


Download files

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

Source Distribution

awarecache-1.5.12.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

awarecache-1.5.12-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file awarecache-1.5.12.tar.gz.

File metadata

  • Download URL: awarecache-1.5.12.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for awarecache-1.5.12.tar.gz
Algorithm Hash digest
SHA256 986ba8db9954112b2fee2ba3ec1effbe04a828aa54907afe5a4b75c432779e59
MD5 f2582b7f1f4e6f7efb8c59efed0ea92b
BLAKE2b-256 c05656eff0edf5c444f30497853db4a0d8b6f48f4bbe5e6cdf7069a2d73f2263

See more details on using hashes here.

File details

Details for the file awarecache-1.5.12-py3-none-any.whl.

File metadata

  • Download URL: awarecache-1.5.12-py3-none-any.whl
  • Upload date:
  • Size: 6.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for awarecache-1.5.12-py3-none-any.whl
Algorithm Hash digest
SHA256 033ad204a7e9b9eac713bc1a35a9db004b26cc8ad074c6f206d9edb3639f2e15
MD5 e357c461c977deba28855b3d2a74b06b
BLAKE2b-256 6ffac9a8e3b276f552feda995bba01f1a3cca3be77cffae9884f726c9edc284b

See more details on using hashes here.

Supported by

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