mirror of
https://github.com/vinta/awesome-python.git
synced 2026-03-22 06:02:02 -05:00
[PR #511] [CLOSED] Added rc, Redis cache cluster system #464
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/vinta/awesome-python/pull/511
Author: @fengsp
Created: 11/18/2015
Status: ❌ Closed
Base:
master← Head:master📝 Commits (1)
4cec68aAdded rc📊 Changes
1 file changed (+1 additions, -0 deletions)
View changed files
📝
README.md(+1 -0)📄 Description
One library that implements cache system for redis in Python. It is for use
with web applications and Python scripts. It comes with really handy apis
for easy drop-in use with common tasks, including caching decorators. It
can be used to build a cache cluster which has a routing system that allows
you to automatically set cache on different servers, sharding can be really
easy now. You can use it to batch fetch multiple cache results back, for
a cluster, it even does the job in parallel, we fetch results from all servers
concurrently, which means much higher performance.
It uses the redis server, which is a in-memory key-value data structure
server. It does not implement any other backends like filesystem and does not
intend to do so. Mostly we want to use a key-value server like redis, if you
have special needs, it is easy to write one cache decorator that stores
everything in memory using a dict or you can check out other libraries.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.