How to install Memcache in Windows
Install Memcache in Windows:
1. Download the stable version of memcache for windows and decompress it to a disk, for example, in c: memcached
2. Enter 'C: memcachedmemcached.exe-d install' on the terminal (that is, the cmd command interface) to install
3. Enter 'C: memcachedmemcached.exe-d start' to start. NOTE: in the future, memcached will be used as a windows Service and will be automatically started every time it is started. In this way, the server has been installed.
4. Download php tutorial _ memcache. dll. Find the corresponding php version file by yourself.
5. Add a line 'extension = php_memcache.dll 'to C: winntphp. ini'
6. Restart Apache and check phpinfo. If memcache exists, the installation is successful!
Basic settings of memcached:
-P listening port
-L connected IP address. The default value is local
-D start: start the memcached service.
-D restart: restart the memcached service.
-D stop | shutdown the running memcached Service
-D install the memcached Service
-D uninstall memcached Service
-U runs as the identity (only valid when running as root)
-MB maximum memory usage, in MB. The default value is 64 MB.
-An error is returned when M memory is used up, instead of deleting items.
-C: Maximum number of simultaneous connections. The default value is 1024.
-F block size growth factor, default value: 1.25
-N: minimum allocation space. The default value of key + value + flags is 48.
-H Show Help
Test the Memcache environment:
Run the following PHP file. If This is a test! is output !, Indicates that the environment is successfully set up. Start to appreciate the charm of Memcache!
<? Php
$ Mem = new Memcache;
$ Mem-> connect ("127.0.0.1", 11211 );
$ Mem-> set ('key', 'This is a test! ', 0, 60 );
$ Val = $ mem-> get ('key ');
Echo $ val;
?>