fasthttp + bolt 做图片服务器是个不错的选择
golang 天生对高并发友好, fasthttp 比标准库快10倍,为什么不直接保存在硬盘而用bolt?有些图片不能直接暴露。加上路由fasthttprouter,完美的图片微服务:
- fasthttp https://github.com/valyala/fasthttp
- bolt https://github.com/boltdb/bolt
- fasthttprouter https://github.com/buaazp/fasthttprouter
0
See Also
Nearby
- 上一篇 › 两张图教你学会选择开源协议
- 下一篇 › 只能支持SNS登录吗?
文件系统管理上会方便点的。。。boltdb 只允许单进程读写,如果你这样做,那web管理功能可得费点心了