Skip to main content

No project description provided

Project description

pyappcache

Pyappcache is a library to make it easier to use application-level caching in Python.

  • Allows putting arbitrary Python objects into the cache

  • Uses PEP484 type hints to help you typecheck cache return values

  • Supports Memcache, Redis and SQLite

  • Supports working as a "read-through" and "write-through" cache

  • Native support for key "namespacing" <https://github.com/memcached/memcached/wiki/ProgrammingTricks#namespacing>__

  • Provides a few handy extras

    • A plugin for the cachecontrol <https://pypi.org/project/CacheControl/>__ library so you can also use it as an HTTP cache with requests <https://pypi.org/project/requests/>__

A simple example

.. code:: python

from datetime import date

from pyappcache.redis import RedisCache
from pyappcache.keys import Key, SimpleStringKey

cache = RedisCache()

# Annotate the type here to let mypy know this key is used for dates
key: Key[date] = SimpleStringKey("mifid start date")
cache.set(key, date(2018, 1, 3), ttl_seconds=3600)

... # later...

# This variable's type will be inferred as datetime.date
special_date = cache.get(key)

How it compares to alternatives

Using the redis/memcache/sqlite client directly


- Explicit key objects allow for type inference and encapsulation of keying
- Keys are prefix to help prevent collisions
- Optional, pluggable, compression
- Hopefully the overhead is small (not yet tested!)
- Portable between redis/memcache/sqlite, etc

dogpile.cache
~~~~~~~~~~~~~

- Explicit key objects allow for type inference and encapsulation of keying
- dogpile.cache provides locking, pyappcache does not
- Reduced temptation to use the problematic decorator pattern
  - This often causes import order problems as you need to have your cache at import time
- Pyappache doesn't provide DBM/file backends, SQLite instead

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

pyappcache-0.10.0.tar.gz (29.8 kB view details)

Uploaded Source

Built Distribution

pyappcache-0.10.0-py3-none-any.whl (27.2 kB view details)

Uploaded Python 3

File details

Details for the file pyappcache-0.10.0.tar.gz.

File metadata

  • Download URL: pyappcache-0.10.0.tar.gz
  • Upload date:
  • Size: 29.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.2

File hashes

Hashes for pyappcache-0.10.0.tar.gz
Algorithm Hash digest
SHA256 07548ead63c4e5212fd99173f9cff79cdcd65016ee058ac509c641127dafdac5
MD5 a5261f2ede7a20bba77eaa1c4d7a4b44
BLAKE2b-256 32ad799d8f8ac81270d3e6eecfe47ab2f74ebe28fc01c33d0848c6cf54c2781a

See more details on using hashes here.

File details

Details for the file pyappcache-0.10.0-py3-none-any.whl.

File metadata

  • Download URL: pyappcache-0.10.0-py3-none-any.whl
  • Upload date:
  • Size: 27.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.2

File hashes

Hashes for pyappcache-0.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5bc70b56f157dd2dc894cb9b9873888659f5f5e8c372cccde2007846e1797b00
MD5 972ece19400349ebf3f90c2005eadc27
BLAKE2b-256 4b6b9afde80aa23c114b5272f5a827b0c5dd84af68bdc7d22005019c48938edc

See more details on using hashes here.

Supported by

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