webdis 是一个简单的 Web 服务器,提供了 HTTP 接口来访问 Redis 服务器,使用了 hiredisjanssonlibevent, and http-parser 等软件。

安装和使用:

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

相关文章:

  • 2021-07-13
  • 2022-02-07
  • 2022-12-23
  • 2021-06-28
  • 2021-11-25
  • 2022-02-16
  • 2022-01-14
猜你喜欢
  • 2022-03-01
  • 2021-09-10
  • 2022-12-23
  • 2021-04-15
  • 2021-12-12
  • 2021-10-26
  • 2021-10-03
相关资源
相似解决方案