Python kettle library

Before reinventing the wheel, I was wondering if there was a cache library other than Django that looked like a Django library. In principle, this would allow you to use different backends (ideally, a file and memcached to run), like the Django cache, and then behave the same regardless of the backend used.

I saw some libraries intended only for memcached, but I did not see what was explicitly configured to work with several caching systems.

+3
source share
2 answers
+6
source

A glass, as said, is the way to go. It supports several backends, including Memcached.

+1
source

Source: https://habr.com/ru/post/1795551/


All Articles