jorjun
jorjun

Reputation: 134

Python 3.6 memcached

Getting confused by the myriad of google python packages. Does anybody know which one I need for my python 3.6 application to use App Engine memcached back end for the flask-caching library?

Upvotes: 0

Views: 83

Answers (1)

vick
vick

Reputation: 199

There is no memcached provided by App Engine flexible environment. You have to use an external memcache service, such as one from RedisLabs, or roll your own in a compute engine vm.

Upvotes: 1

Related Questions