Skip to content
Snippets Groups Projects
Commit 9c3492a1 authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible/roles/drupal#24 Optimize MySQL performance for Drupal

parent de005dde
No related branches found
Tags v3.4.1
No related merge requests found
......@@ -23,6 +23,9 @@ $databases = array(
'host' => 'mariadb',
'port' => '3306',
'prefix' => '',
'init_commands' => [
'tx_level' => "SET TRANSACTION ISOLATION LEVEL READ COMMITTED;",
],
),
),
);
......@@ -42,6 +45,9 @@ $databases = array(
'password' => 'drupal',
'database' => 'drupal',
'prefix' => '',
'init_commands' => [
'tx_level' => "SET TRANSACTION ISOLATION LEVEL READ COMMITTED;",
],
),
),
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment