Ajout d'une variable manquante

This commit is contained in:
Philippe Caseiro 2018-04-11 17:17:09 +02:00
parent 3ef18135b6
commit 6fe1c2da61
2 changed files with 9 additions and 5 deletions

View File

@ -44,6 +44,10 @@
<value>Default</value> <value>Default</value>
</variable> </variable>
<variable name="accLimitTarget" type="string" description="Restriction d'accès à ces IP/noms d'hôtes (liste séparateur séparateur ',')" /> <variable name="accLimitTarget" type="string" description="Restriction d'accès à ces IP/noms d'hôtes (liste séparateur séparateur ',')" />
<variable name="dbClusterGcacheSizeMb" type="number" description="FIXME Gcachesize">
<value>128</value>
</variable>
</family> </family>
<!-- Tunning --> <!-- Tunning -->

View File

@ -8,9 +8,9 @@ thread_cache_size=%%dbThreadCacheSize
%if %%dbCacheQueryEnable == 'oui' %if %%dbCacheQueryEnable == 'oui'
query_cache_type = 1 query_cache_type = 1
query_cache_limit = %%dbQueryCacheLimit query_cache_limit = %%getVar('dbQueryCacheLimit')
query_cache_min_res_unit = %%dbQueryCacheMinResUint query_cache_min_res_unit = %%getVar('dbQueryCacheMinResUint')
query_cache_size = %%dbQueryCacheSize query_cache_size = %%getVar('dbQueryCacheSize')
%end if %end if
tmp_table_size = %%dbTmpTableSize tmp_table_size = %%dbTmpTableSize
@ -18,8 +18,8 @@ max_heap_table_size = %%dbTmpTableSize
%if %%dbEnableSlowQueryLogs == "oui" %if %%dbEnableSlowQueryLogs == "oui"
slow-query-log = 1 slow-query-log = 1
slow-query-log-file = %%dbSlowQueryLogFile slow-query-log-file = %%getVar('dbSlowQueryLogFile')
long_query_time = %%dbSlowQueryLogTime long_query_time = %%getVar('dbSlowQueryLogTime')
%end if %end if
wait_timeout = %%dbWaitTimeout wait_timeout = %%dbWaitTimeout