skip to Main Content

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


  1. According to memcached installation guide:

    There is no official support for windows builds.

    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)

    Login or Signup to reply.
  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search