When I try to use Cache in Laravel 4, I get the following error:
Class 'Memcached' not found in \vendor\laravel\framework\src\Illuminate\Cache\MemcachedConnector.php
I thought that I have memcached installed, because I've been using it with another PHP application, but it seems that it is memcache (this is working fine outside of Laravel): $memcached = new Memcache;
The steps that I followed to install memcache before were similar to the steps described in the answer here: How to enable memcache in WAMP
I couldn't find a way to install memcached (not memcache) on Windows. Is there any? Or, can I set some kind of dummy cache, where the cache functions will not fail on my development PC, but work on the production server without any issues?
I'm using WAMP server.