{{ cache.info?.redis_version || "-" }}
{{ cache.info?.redis_mode === "standalone" ? "单机" : "集群" }}
{{ cache.info?.tcp_port || "-" }}
{{ cache.info?.connected_clients || "-" }}
{{ cache.info?.uptime_in_days || "-" }}
{{ cache.info?.used_memory_human || "-" }}
{{
cache.info?.used_cpu_user_children !== undefined
? parseFloat(cache.info.used_cpu_user_children).toFixed(2)
: "-"
}}
{{ cache.info?.maxmemory_human || "-" }}
{{ cache.info?.aof_enabled === "0" ? "否" : "是" }}
{{ cache.info?.rdb_last_bgsave_status || "-" }}
{{ cache.dbSize || "-" }}
{{
cache.info
? `${cache.info.instantaneous_input_kbps}kps/${cache.info.instantaneous_output_kbps}kps`
: "-"
}}
{{
cache.info?.used_memory !== undefined &&
cache.info?.maxmemory !== undefined &&
cache.info.maxmemory > 0
? (
(cache.info.used_memory / cache.info.maxmemory) *
100
).toFixed(2) + "%"
: "-"
}}
{{ cache.info?.os || "-" }}
{{ cache.info?.arch_bits || "-" }}
{{ cache.info?.multiplexing_api || "-" }}