redis cache

This commit is contained in:
tdurieux
2026-05-07 15:55:28 +03:00
parent b37a814f3a
commit 369fd8edb2
3 changed files with 98 additions and 51 deletions
+2 -2
View File
@@ -995,7 +995,7 @@ angular
getQueues();
getMetrics();
}
}, 5000);
}, 15000);
$scope.$on("$destroy", () => $interval.cancel(stop));
$scope.refreshNow = function () { getQueues(); getMetrics(); };
@@ -1732,7 +1732,7 @@ angular
load();
const stop = $interval(() => {
if ($scope.query.autoRefresh) load();
}, 5000);
}, 15000);
$scope.$on("$destroy", () => $interval.cancel(stop));
$scope.$watch("query.search", recompute);