I've followed each step to install and start memcache in windows. Didn't found any memcache.exe file(some tutorials told to use memcached.exe, so used it from link:http://downloads.northscale.com/memcached-win32-1.4.4-14.zip)
Executing following command in cmd with admin rights:
net start "memcached"
shows "The memcached service is starting. The memcached service was started successfully."
But result of phpinfo() does not show any memcache detail. Moreover php code is unable to find "memcahed" or "memcache" class.
I'm working on windows, using xampp(32bits).
PHP version 5.6.24
OS: Windows 8.1
Architecture: x86
Thread safety: enabled
Things already done:
-> added "extension=php_memcache.dll" to php.ini file(located at \xampp\php\php.ini)
-> verified locations of "extension_dir" variable and "php_memcache.dll" -> no php_memcache.dll for version 5.2.0 was available, so tried with different versions but didn't work
->verified that both php and .dll are thread safe(TS).
Please let me know what I'm missing out?