perf(main): lengthen runtime process table cache

This commit is contained in:
777genius 2026-05-31 06:08:01 +03:00
parent 0e82c1bdbd
commit 743bef8f30

View file

@ -45,7 +45,7 @@ export interface RuntimeProcessTableRow {
* before acting. Keep this cache long enough to collapse bursts from concurrent
* team refreshes, but short enough that stale "alive" UI is brief.
*/
const RUNTIME_PROCESS_TABLE_CACHE_TTL_MS = 10_000;
const RUNTIME_PROCESS_TABLE_CACHE_TTL_MS = 30_000;
interface RuntimeProcessTableCacheEntry {
rows: RuntimeProcessTableRow[];