如何创建 gzip 压缩的 HTTP::Response?
我需要使用压缩数据创建 HTTP::Response 。我该如何对内容进行压缩?我是否只需添加适当的标头并使用 Compress::Zlib 自行压缩它?或者 LWP 模块是否提供了处理此问题的方法?
I need to create an HTTP::Response with compressed data. How do I go about making the content gzipped? Do I just add the appropriate headers and compress it myself using Compress::Zlib? Or does any of the LWP modules provide a method for handling this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是你需要的吗?您对数据进行压缩,设置内容编码标头,然后将其发送出去。
Is this what you need? You gzip the data, set the Content-encoding header, and send it off.