Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akornatskyy/wheezy.caching
A lightweight caching library
https://github.com/akornatskyy/wheezy.caching
caching memcached python wheezy
Last synced: about 1 month ago
JSON representation
A lightweight caching library
- Host: GitHub
- URL: https://github.com/akornatskyy/wheezy.caching
- Owner: akornatskyy
- License: mit
- Created: 2020-06-25T07:55:59.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-05T05:36:12.000Z (3 months ago)
- Last Synced: 2024-11-03T14:07:07.167Z (2 months ago)
- Topics: caching, memcached, python, wheezy
- Language: Python
- Homepage: https://wheezycaching.readthedocs.io/en/latest/
- Size: 346 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wheezy.caching
[![Build Status](https://travis-ci.org/akornatskyy/wheezy.caching.svg?branch=master)](https://travis-ci.org/akornatskyy/wheezy.caching)
[![Coverage Status](https://coveralls.io/repos/github/akornatskyy/wheezy.caching/badge.svg?branch=master)](https://coveralls.io/github/akornatskyy/wheezy.caching?branch=master)
[![Documentation Status](https://readthedocs.org/projects/wheezycaching/badge/?version=latest)](https://wheezycaching.readthedocs.io/en/latest/?badge=latest)
[![pypi version](https://badge.fury.io/py/wheezy.caching.svg)](https://badge.fury.io/py/wheezy.caching)[wheezy.caching](https://pypi.org/project/wheezy.caching/) is a
[python](http://www.python.org) package written in pure Python code. It
is a lightweight caching library that provides integration with:- [python-memcached](https://pypi.org/project/python-memcached/) -
Pure Python [memcached](http://memcached.org) client.
- [pylibmc](https://pypi.org/project/pylibmc/) - Quick and small
[memcached](http://memcached.org) client for Python written in C.It introduces idea of *cache dependency* (effectively invalidate
dependent cache items) and other cache related algorithms.It is optimized for performance, well tested and documented.
Resources:
- [source code](https://github.com/akornatskyy/wheezy.caching)
and [issues](https://github.com/akornatskyy/wheezy.caching/issues)
tracker are available on
[github](https://github.com/akornatskyy/wheezy.caching)
- [documentation](https://wheezycaching.readthedocs.io/en/latest/)## Install
[wheezy.caching](https://pypi.org/project/wheezy.caching/) requires
[python](http://www.python.org) version 3.9+. It is independent of operating
system. You can install it from
[pypi](https://pypi.org/project/wheezy.caching/) site:```sh
pip install -U wheezy.caching
pip install -U wheezy.caching[pylibmc]
pip install -U wheezy.caching[python-memcached]
```If you run into any issue or have comments, go ahead and add on
[github](https://github.com/akornatskyy/wheezy.caching).