I want to load a database from a remote server to my memory/cache, so that I don't have to make network calls every time I want to use the database.
I am doing this in Python and the database is cassandra
. How should I do it? I have heard about memcached
and beaker
. Which library is best for this purpose?