Differences between pylibmc, dbm, and memcached in dogpile.cache

913 views Asked by At

I am new to caching in Python and unable to understand the differences between dogpile.cache.dbm, dogpile.cache.pylibmc, and dogpile.cache.memcached. Could someone please explain it?

1

There are 1 answers

0
Slam On

dogpile.cache has unified interface for different caching backends – meaning that your data can be stored in different places, while library will provide you same functionality for all of them.

You can see all available backends in documentation