我检查了mochiweb响应头,它们总是排序(降序):
< Server: MochiWeb/1.0 (Any of you quaids got a smint?)
< last-modified: Sun, 30 Aug 2015 23:13:04 GMT
< Date: Sun, 30 Aug 2015 23:15:15 GMT
< Content-Type: text/html
< Content-Length: 89
这看起来是因为mochiweb头是用erlang gb_tree
处理的,它后来被转换成一个列表,所以它是有序的。
有办法改变这一点吗?因为这可以解决(有时)像这里和这里的问题
我的问题是,我正在尝试创建一个复制一些请求的服务,我正在使用mochiweb,但头部正在排序,因此它不能完全正确地复制响应。
修复此处:
mochiweb commit 952087e
这是一个在响应中格式化标题的问题,而不是在mochiweb_headers
中。