Reputation: 134
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
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