I've created a new file in application/libraries/fnmemcache.php, with:
namespace Laravel\Cache\Drivers;
class FNMemcache extends Sectionable {
// ...
}
When I set the "fnmemcache" driver in the cache.php config file it doesn't detect my new cache driver. I've also tried with the method Cache::extend() in start.php but it's the same thing.
Having a look at the cache.php file (factory method) in laravel directory it seems it would never work as it have a switch with the predefined cache drivers and if we don't specify one of them an exception is thrown. This would be easy modifying the core, but of course I don't wanna do that.
factorymethod is only called if thedrivermethod doesn't find a driver. Assuming thedrivermethod is being called first, and you'veextended, it should work. – Waleed Khan Feb 13 at 12:24