我有一个简单的系统缓存,我想知道当我压缩此缓存文件夹中的每个文件时,请求何时解压缩并发送它,此操作是否会影响速度?它会消耗更多的内存资源吗?
注意:目标是节省空间
感谢
答案 0 :(得分:0)
您是否手动压缩服务器上的缓存文件,然后手动解压缩并将其发送回浏览器,并提出要求?
是的,这会消极影响您的表现。
相反,请考虑使用mod_deflate之类的东西,在将文件大小发送到浏览器时自动缩小文件大小。
答案 1 :(得分:0)
如果您正在运行Apache Web服务器,则可以在.htaccess或apache conf文件中输入以下代码集,或者使用在线工具检查是否正常工作
<IfModule mod_deflate.c>
SetOutputFilter DEFLATE
<IfModule mod_setenvif.c>
# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
# BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex won't work. You can use the following
# workaround to get the desired effect:
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
</IfModule>
<IfModule mod_headers.c>
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</IfModule>
</IfModule>
您可以调整和调整设置以进行缓存,在命令行上可以检查是否正在压缩文件
curl -I -H 'Accept-Encoding: gzip,deflate' www.domain.com