After some research I found that there is a Win32 binary version of memcached available here.
So go there and download win32 binary version to your computer. When downloaded, extract the file to folder memcahced on your C partition.
You should get only one file named memcached.exe. Now we need to install this as a service, as memCached is daemon and should be run only as service.
To install Memcached as a service, follow these steps (please change all forward slashes to backslashes):
- If you’re running Vista, you should set memcached.exe to Run as administrator
- Install the service using the command:
1c:/memcached/memcached.exe -d installfrom the command prompt
- Start the server from the Services or by running one of the following commands:
1c:/memcached/memcached.exe -d startor
1net start "memcached Server"
That is it, now your memcached server is installed and is listening to port 11211. There is one more thing left to do. By default, server is set to 64Mb memory limit, which is too small. To correct, go to Registry Editor and find key
1 |
HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/memcached Server . |
Change the ImagePath entry to:
1 |
“C:/memcached/memcached.exe” -d runservice -m 512 |
This way you will use 512 Mb memory limit for your server.