I am trying to implement Memcached in front of my rest services .How can i get the latest Memcached 1.6 version for windows. Everywhere i get binaries for 1.4.4
I am trying to implement Memcached in front of my rest services .How can i get the latest Memcached 1.6 version for windows. Everywhere i get binaries for 1.4.4
2
Answers
According to memcached installation guide:
This means you will either have to build it yourself or trust someone else’s binary (not recommended).
You can also use docker for windows and then just
docker run --name my-memcache -d memcached
(as shown here)Here you will find a serious and verified native Windows port for Memcached.
You will be able to run it as a service as well.
Current version is 1.6.8, and it’s really faster than the usual 1.4.4 you can find everywhere (tested with PHP8).
https://github.com/jefyt/memcached-windows
A more up to date Cygwin version is available here and runs well too as a service via NSSM
https://github.com/nono303/memcached