Can I get Memcached running on a Windows (x64) 64bit environment?

前端 未结 13 1301
一个人的身影
一个人的身影 2020-11-28 01:01

Does anyone know IF, WHEN or HOW I can get Memcached running on a Windows 64bit environment?

I\'m setting up a ne

13条回答
  •  失恋的感觉
    2020-11-28 01:49

    Up-to-date Binaries

    NorthScale has really old versions (the newest is 1.4.5 which is from April 2010) but there's a guy who offers 64-bit Memcached binaries for Windows compiled using Cygwin (but they don't require it installed) in his GitHub repository github.com/nono303/memcached.

    For example, the binaries of the most recently released version (as of writing this answer) 1.5.16 are here. There're both 32 and 64-bit versions.

    Memcached as a Windows Service

    If you want to install it as a Windows service, you can use for example the open-source Non-Sucking Service Manager:

    nssm install memcached c:\path\to\memcached.exe
    nssm start memcached
    

    See the documentation for details.

提交回复
热议问题