blob: 800d8c12a6f6325b45a17dcd5632aee576991da0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
---
title: Gzip 压缩
slug: Glossary/GZip_compression
tags:
- 压缩
- 数据
- 术语
translation_of: Glossary/GZip_compression
---
<p>Gzip 是一种用于文件压缩与解压缩的文件格式。它基于 Deflate 算法,可将文件(译者注:快速地、流式地)压缩地更小,从而实现更快的网络传输。 Web服务器与现代浏览器普遍地支持 Gzip,这意味着服务器可以在发送文件之前自动使用 Gzip 压缩文件,而浏览器可以在接收文件时自行解压缩文件。</p>
<h2 id="了解更多">了解更多</h2>
<ul>
<li><a href="https://varvy.com/pagespeed/enable-compression.html">如何启用 GZip 压缩</a></li>
<li><a href="https://en.wikipedia.org/wiki/Gzip">Gzip on Wikipedia</a></li>
<li>中文维基百科上的 <a href="https://zh.wikipedia.org/wiki/Gzip">Gzip</a></li>
</ul>
<section id="Quick_links">
<ul>
<li>
<details open><summary><a href="/zh-CN/docs/Glossary">MDN 术语表</a></summary> {{ListSubpages("/zh-CN/docs/Glossary")}}</details>
</li>
</ul>
</section>
|