File size: 1,479 Bytes
9e4583c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | /**
* Settings Cache — FASE-03 Architecture Refactoring
*
* In-memory cache for settings to eliminate self-fetch anti-pattern in middleware.
* The middleware was making HTTP requests to its own /api/settings endpoint,
* which caused circular dependencies and performance issues.
*
* @module settingsCache
*/
import { getSettings } from "@/lib/localDb";
/** @type {{ data: object|null, lastFetch: number, ttl: number }} */
const cache = {
data: null,
lastFetch: 0,
ttl: 5000, // 5 seconds TTL
};
/**
* Get settings from cache (or refresh if stale).
* This replaces the self-fetch pattern in middleware.
*
* @returns {Promise<object>} Settings object
*/
export async function getCachedSettings() {
const now = Date.now();
if (cache.data && now - cache.lastFetch < cache.ttl) {
return cache.data;
}
try {
const settings = await getSettings();
cache.data = settings;
cache.lastFetch = now;
return settings;
} catch (err) {
// If fetch fails but we have stale data, return it
if (cache.data) {
console.error("[SettingsCache] Failed to refresh, using stale data:", err.message);
return cache.data;
}
throw err;
}
}
/**
* Invalidate the cache (e.g. after settings update).
*/
export function invalidateSettingsCache() {
cache.data = null;
cache.lastFetch = 0;
}
/**
* Set the cache TTL in milliseconds.
* @param {number} ms
*/
export function setSettingsCacheTTL(ms) {
cache.ttl = ms;
}
|