redis.js 298 Bytes
Newer Older
sunhongwei's avatar
sunhongwei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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'
  })
}