Quantcast
Channel: V2EX - scriptB0y
Viewing all articles
Browse latest Browse all 50

[分享创造] 更方便地处理 Redis 存储的 json/protobuf/binary/csv/yaml 数据

$
0
0

Redis 是 binary safe 的,所以经常在里面用 string 格式存储一些 json 等格式化的数据。但是用 redis-cli GET 出来,在 debug 的时候很不友好。

所以我写了一个客户端,可以和 shell 连接起来,用 | 将 Redis 的 Response 通过 pipe 用 shell 的其他工具,比如 jq/fx/rg/sort/uniq/cut/sed/awk 等处理。假如你用其他格式的话,也可以在 GET 后面加 shell 命令来处理,非常方便。

(觉得方便的话请给一个 star,还支持自动补全,语法高亮等其他功能,欢迎提宝贵建议)

项目地址: https://github.com/laixintao/iredis

安装方式:

pip install iredis==0.8.7  # lastest version for now

asciicast


Viewing all articles
Browse latest Browse all 50

Trending Articles