Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use the GAE Memcache in node.js on flexible environment

How to use the GAE Memcache in node.js on flexible environment. I don't see the memcache api back in the node.js client lib. (https://googlecloudplatform.github.io/google-cloud-node/#/).

There are some examples from using a Redis Labs Memcache instance but nothing on the GAE onboard instance of memcache.

like image 587
Mark de Valk Avatar asked Feb 12 '17 10:02

Mark de Valk


1 Answers

GAE Memcache service is not available in the App Engine flexible environment. To cache application data, use MemoryStore for Redis.

like image 112
Eien Avatar answered Nov 12 '22 22:11

Eien