Tim
Tim

Reputation: 2397

How to access memcache on App Engine Nodejs Standard

How does one access memcache from the nodejs standard environment?

Upvotes: 12

Views: 4008

Answers (1)

Dan Cornilescu
Dan Cornilescu

Reputation: 39824

The documentation apparently makes no reference to the App Engine memcache being available to the Node.JS standard environment, at least not at this time:

But there may be an alternative. From APIs & Reference:

enter image description here

Which leads to Node.js Packages, where I can see:

enter image description here

Which leads to Cloud Redis: Node.js Client.

This is inline with the suggestions from the Memcache section of the Migrating Services from the Standard Environment to the Flexible Environment guides, the flexible environment having the same problem (except clearly documented):

The Memcache service is currently not available for the App Engine flexible environment

Upvotes: 8

Related Questions