Skip to content

Instantly share code, notes, and snippets.

@hn-support
Last active March 20, 2017 13:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hn-support/108a24a80430733bc23935ae7bfb527d to your computer and use it in GitHub Desktop.
Save hn-support/108a24a80430733bc23935ae7bfb527d to your computer and use it in GitHub Desktop.
Setup redis caching for magento2
'cache' => array(
'frontend' => array(
'default' => array(
'backend' => 'Cm_Cache_Backend_Redis',
'backend_options' => array(
'server' => '127.0.0.1',
'port' => '6379',
),
),
),
),
@hn-support
Copy link
Author

Thanks @mikebranderhorst :) I updated the snippet :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment