Increase cached app TTL to 24 hours. Cause, where is your sense of adventure?

This commit is contained in:
jelveh
2026-04-21 17:41:35 -07:00
parent e9a80d0834
commit 6b3196ed0c
+2 -2
View File
@@ -364,7 +364,7 @@ export async function get_app (options) {
const cacheApp = async (app) => {
if ( ! app ) return;
AppRedisCacheSpace.setCachedApp(app, {
ttlSeconds: 300,
ttlSeconds: 24 * 60 * 60,
});
};
const isDecoratedAppCacheEntry = (app) => (
@@ -550,7 +550,7 @@ export const get_apps = spanify('get_apps', async (specifiers, options = {}) =>
const cacheApp = async (app) => {
if ( ! app ) return;
AppRedisCacheSpace.setCachedApp(app, {
ttlSeconds: 300,
ttlSeconds: 24 * 60 * 60,
});
};