Memcache error on yii migrate.
exception 'yii\base\InvalidConfigException' with message 'MemCache requires PHP memcache extension to be loaded.'
in /Applications/AMPPS/www/G2G/vendor/yiisoft/yii2/caching/MemCache.php:220
Stack trace: #0 /Applications/AMPPS/www/G2G/vendor/yiisoft/yii2/caching/MemCache.php(116): yii\caching\MemCache->getMemcache()
I have memcached installed on my laptop and in my php its active as well. But still getting above error. Any reason to this?
Config
'cache' => [
'class' => 'yii\caching\MemCache',
'servers' => [
[
'host' => '127.0.0.1',
'port' => 11211
],
],
],