memcached does not work
-
I am using Docker to package WordPress, and I have the following command in my Dockerfile:
RUN apt-get update && \
apt-get install -y libz-dev libmemcached-dev zlib1g-dev && \
apt-get install -y memcached libmemcached-tools && \
pecl install memcached && \
docker-php-ext-enable memcachedI can successfully connect to the Memcached server using
telnet 127.0.0.1 11211, but I am encountering an error on the WordPress settings page, and the cache functionality is not working. Can you please advise on what I might be doing wrong?
The following memcached servers are not responding or not running:- Database Cache: 127.0.0.1:11211.
- Page Cache: 127.0.0.1:11211.
This message will automatically disappear once the issue is resolved.
The page I need help with: [log in to see the link]
The topic ‘memcached does not work’ is closed to new replies.