You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
298 B
JavaScript

import request from '@/utils/request'
// 查询缓存详细
export function getCache() {
return request({
url: '/infra/redis/get-monitor-info',
method: 'get'
})
}
// TODO
export function getKeyList() {
return request({
url: '/infra/redis/get-key-list',
method: 'get'
})
}