Добавлен параметр "queryCacheEnabled" в конфиг

This commit is contained in:
Book Pauk
2022-08-25 23:35:12 +07:00
parent 6222827593
commit 1e5c97dfac
3 changed files with 73 additions and 62 deletions

View File

@@ -18,6 +18,7 @@ module.exports = {
loggingEnabled: true,
maxFilesDirSize: 1024*1024*1024,//1Gb
queryCacheEnabled: true,
cacheCleanInterval: 60,//minutes
webConfigParams: ['name', 'version', 'branch'],

View File

@@ -6,6 +6,7 @@ const branchFilename = __dirname + '/application_env';
const propsToSave = [
'loggingEnabled',
'maxFilesDirSize',
'queryCacheEnabled',
'cacheCleanInterval',
'server',
];