text/plain 类型的文件传输速度比其他 mime 类型快得多

Files of text/plain type is transferred much faster than other mime types

我有一个 HTTP 文件传输 java 应用程序。

我发现较大的文本文件(plain/text mime 类型)比其他较小的二进制文件传输得更快。

在我的客户端中,我使用 Java 脚本 XMLHttpRequest 来下载文件。

我首先使用响应类型 "blob" 将文件保存在 blob(浏览器内存)中,然后使用 href 将其保存到文件系统。

发生这种情况是否有任何具体原因。是因为保存了 blob 吗?

这可能是因为压缩(参见 transfer-encoding/content-encoding "gzip")。