You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/config-app.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -346,10 +346,10 @@ available: `/cache/invalidate?account={accountId}` which remove account from the
346
346
- `settings.in-memory-cache.http-update.timeout`- timeout for obtaining stored request updates.
347
347
- `settings.in-memory-cache.database-update.init-query`- initial query for fetching all stored requests at the startup.
348
348
- `settings.in-memory-cache.database-update.update-query`- a query for periodical update of stored requests, that should
349
-
contain 'WHERE last_updated > ?' to fetch only the records that were updated since previous check.
349
+
contain 'WHERE last_updated > ?' for MySQL and 'WHERE last_updated > $1' for Postgresql to fetch only the records that were updated since previous check.
350
350
- `settings.in-memory-cache.database-update.amp-init-query`- initial query for fetching all AMP stored requests at the startup.
351
351
- `settings.in-memory-cache.database-update.amp-update-query`- a query for periodical update of AMP stored requests, that should
352
-
contain 'WHERE last_updated > ?' to fetch only the records that were updated since previous check.
352
+
contain 'WHERE last_updated > ?' for MySQL and 'WHERE last_updated > $1' for Postgresql to fetch only the records that were updated since previous check.
353
353
- `settings.in-memory-cache.database-update.refresh-rate`- refresh period in ms for stored request updates.
354
354
- `settings.in-memory-cache.database-update.timeout`- timeout for obtaining stored request updates.
0 commit comments