feat: redis支持list查看&其他小优化

This commit is contained in:
meilin.huang
2022-09-22 11:56:21 +08:00
parent be00b90c1d
commit 22c401f9d8
82 changed files with 604 additions and 242 deletions

View File

@@ -20,4 +20,7 @@ export const redisApi = {
saveSetValue: Api.create("/redis/{id}/set-value", 'post'),
del: Api.create("/redis/{id}/scan/{cursor}/{count}", 'delete'),
delKey: Api.create("/redis/{id}/key", 'delete'),
getListValue: Api.create("/redis/{id}/list-value", 'get'),
saveListValue: Api.create("/redis/{id}/list-value", 'post'),
setListValue: Api.create("/redis/{id}/list-value/lset", 'post'),
}