如何在 apache 服务器中编写自己的自定义压缩逻辑
我正在做一些压缩网络流量的项目,即从服务器发送到浏览器的数据。 因此,像 gzip 或 sdcp 等其他 http 压缩技术一样,我想在从服务器发送数据之前对其进行压缩。但我不知道如何在 apache 中编写这样的模块。 有人可以指导我吗?
我在浏览器端编写了一个代理服务器,用于解压由我的逻辑压缩的数据。
Im doing some project for compressing the web traffic, that is the data send from server to browser.
So like other http compression techniques like gzip or sdcp, i want to compress the data before sending it from server. But i have no idea about writing such a module in apache.
Can any one guide me?
I have written a proxy server at the browser side which decompress the data compressed by my logic.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其压缩在 servlet 过滤器中并将其流式传输回来,但是......真的吗?你的压缩更好/更快/等等。比标准 gzip ?是否足够更快地想要打扰?
Compress it in a servlet filter and stream it back, but... really? Your compression is better/faster/etc. than standard gzip? Is it enough faster to want to bother?