Schema Changes: 3.8.3
Upgrade: 3.8.2 → 3.8.3
This release applied 1 migration(s) to the database schema.
| ID | Type | Description |
|---|---|---|
data |
concurrent search global flags |
Migration Details
1361 — concurrent search global flags
Type: data
View SQL
-- check whether patch can be applied
INSERT INTO config.global_flag (name, value, enabled, label)
VALUES (
'opac.max_concurrent_search.query',
'20',
TRUE,
oils_i18n_gettext(
'opac.max_concurrent_search.query',
'Limit the number of global concurrent matching search queries',
'cgf', 'label'
)
);
INSERT INTO config.global_flag (name, value, enabled, label)
VALUES (
'opac.max_concurrent_search.ip',
'0',
TRUE,
oils_i18n_gettext(
'opac.max_concurrent_search.ip',
'Limit the number of global concurrent searches per client IP address',
'cgf', 'label'
)
);