Skip to content

Instantly share code, notes, and snippets.

@Stepa4man
Last active July 30, 2019 07:02
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 Stepa4man/5a5821936f4f50724bb05be2c4976a3b to your computer and use it in GitHub Desktop.
Save Stepa4man/5a5821936f4f50724bb05be2c4976a3b to your computer and use it in GitHub Desktop.
Magento 2 amqp configuration
,
'cache' => [
'frontend' => [
'default' => [
'id_prefix' => 'c49_',
'backend' => 'Cm_Cache_Backend_Redis',
'backend_options' => [
'server' => '172.16.238.14',
'port' => '6379',
'persistent' => '',
'database' => '0',
'force_standalone' => '0',
'connect_retries' => '1',
'read_timeout' => '10',
'automatic_cleaning_factor' => '0',
'compress_data' => '1',
'compress_tags' => '1',
'compress_threshold' => '20480',
'compression_lib' => 'gzip'
]
],
'page_cache' => [
'id_prefix' => 'c49_',
'backend' => 'Cm_Cache_Backend_Redis',
'backend_options' => [
'server' => '172.16.238.14',
'port' => '6379',
'persistent' => '',
'database' => '1',
'force_standalone' => '0',
'connect_retries' => '1',
'read_timeout' => '10',
'automatic_cleaning_factor' => '0',
'compress_data' => '0',
'compress_tags' => '1',
'compress_threshold' => '20480',
'compression_lib' => 'gzip'
]
]
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment