Redis 一直以来只提供纯文本操作协议(只有在 Cluster 中应用了二进制协议),这可能令很多推崇 RESTFul 的同学感觉不爽了,最近,一位同学业余开发了一个支持 HTTP 协议的 Redis Proxy,取名Webdis。其在Redis 的讨论区一发布,则引来一遍赞扬之声。下面是其简单使用例子:
Webdis 在安装运行上秉承了 Redis 的极简主义,只需要 make 一下然后执行二进制文件即可,前题是需要在本机运行一个 Redis Deamon,因为他只是一个Proxy。
1 2 3 4 5 6 7 8 | make clean all ./webdis & curl http://127.0.0.1:7379/SET/hello/world → {"SET":[true,"OK"]} curl http://127.0.0.1:7379/GET/hello → {"GET":"world"} curl -d "GET/hello" http://127.0.0.1:7379/ → {"GET":"world"} |
项目地址:https://github.com/nicolasff/webdis/
转自:NoSQLfan