完成前端缓存监控适配

This commit is contained in:
wkc
2026-03-28 11:18:36 +08:00
parent 65fe3d4605
commit 7075bee8f4
4 changed files with 242 additions and 80 deletions

View File

@@ -1,6 +1,6 @@
import request from '@/utils/request'
// 查询缓存详细
// 查询缓存概览
export function getCache() {
return request({
url: '/monitor/cache',
@@ -32,7 +32,7 @@ export function getCacheValue(cacheName, cacheKey) {
})
}
// 清理指定名称缓存
// 清理指定名称下的缓存
export function clearCacheName(cacheName) {
return request({
url: '/monitor/cache/clearCacheName/' + cacheName,