fix: try disabling this 30 second app cache for now

OOM conditions happening... maybe this will fix it
This commit is contained in:
KernelDeimos
2025-09-15 00:12:46 -04:00
parent 735f16725d
commit f98c78504b
+3 -3
View File
@@ -366,9 +366,9 @@ async function refresh_associations_cache(){
if ( app === null ) return null;
kv.set(`apps:uid:${app.uid}`, app, { EX: 30 });
kv.set(`apps:name:${app.name}`, app, { EX: 30 });
kv.set(`apps:id:${app.id}`, app, { EX: 30 });
// kv.set(`apps:uid:${app.uid}`, app, { EX: 30 });
// kv.set(`apps:name:${app.name}`, app, { EX: 30 });
// kv.set(`apps:id:${app.id}`, app, { EX: 30 });
// shallow clone because we use the `delete` operator
// and it corrupts the cache otherwise