I started memcached service using task scheduler
schtasks /create /sc onstart /tn memcached /tr "'c:\memcached\memcached.exe' -m 512"
and also using
c:\memcached\memcached.exe -d install
c:\memcached\memcached.exe -d install
Also I included the php_memcache.dll
into /xampp/php/ext
folder and added the corresponding lines into php.ini
.
extension=php_memcache.dll
[Memcache]
memcache.allow_failover = 1
memcache.max_failover_attempts=20
memcache.chunk_size =8192
memcache.default_port = 11211
I tried different versions of memcache and still I am encountering the same issue of "Class Memcached not found in ...". I'm using windows 10.