We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28b31aa commit ccc2234Copy full SHA for ccc2234
1 file changed
config/var/www/admin/control-panel/external-services/external-services.js
@@ -33,7 +33,7 @@ export class ExternalServicesManager {
33
this.container = document.querySelector(containerSelector);
34
this.settingsContainer = document.querySelector(settingsContainerSelector);
35
36
- // State management with TTL cache and FIFO eviction (5-minute TTL, max 100 entries)
+ // State management with TTL cache and LRU eviction (5-minute TTL, max 100 entries)
37
this.serviceCache = new Map();
38
this.cacheTTL = 5 * 60 * 1000; // 5 minutes in milliseconds
39
this.cacheMaxSize = 100; // Limit cache size to prevent memory growth
0 commit comments