I have a php webapplication running on my webserver. Now I want to outsource the memcache and would like to try the google cloud/app engine memcache service.
How do I connect to the memcache service from outside (from my webserver)? Is that possible at all?
I found the documentation on how to use the service here https://cloud.google.com/appengine/docs/php/memcache/#PHP_PHP_memcache_implementation
But I don't see any description on how to connect to the memcache service remotely.
Probably Memcache::addServer() would do the job (http://php.net/manual/de/memcache.addserver.php) But, where do I find the right settings (host, port, etc) to connect to the service? Still, I am not even sure if this is possible at all.
Thanks for any advice Georg