Very tiny caching HTTP proxy

blov · 2018-02-01 01:30:02 · 681 次点击    
这是一个分享于 2018-02-01 01:30:02 的资源,其中的信息可能已经有所发展或是发生改变。

Hi,

at work we tried to configure the Apache HTTP server to act as a reverse proxy with caching. We couldn't get it to work in more than three hours. At home I wrote exactly this in two hours: A reverse proxy that caches the requests: https://github.com/hauke96/tiny-http-proxy

It would be great if I get some feedback to the code: What could go wrong using it? What could be done more efficient/readable/elegant/shorter/...?

Regards Hauke


评论:

tsdtsdtsd:

I believe you should use a custom http.Client instead of a direct http.Get, so you can set a meaningful timeout. And maybe you want to handle redirects in a custom way too. This is a nice article about that stuff. EDIT: also check the comments in that article, some good stuff there too.

tv64738:

He should definitely plumb up the incoming context to the outgoing one, to get request cancellation.

theo_retiker:

Thanks for this article, I thought all the time that there's a default timeout like 30 seconds. But now I'm using the http.Client and http.Server (as mentioned in the comments, the default server has timeout issues too).

-amir:

Seems like the cache is not thread safe...

theo_retiker:

Oh, yes, that's right and something I'll work on later. Thank for the hint :)

dahlma:

This is cool! I've written a proxy as well, unfortunately not something I can share but so far it's worked out pretty well. I'm storing the data in a DB instead of file system since I'm running the app on heroku, I need it to not rely on the filesystem (s3 may be an option but would need to look into latency)

I'm wondering though, when you save the information to the filesystem, does that retain headers?


入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

681 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传