- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人告诉我,tomcat 在提供静态资源(例如 js/css/img)时速度很慢。 (我只熟悉nodejs)
我不明白为什么 tomcat 比 nodejs/nginx 慢。他们是否都应该使用内存缓存,或者至少在提供静态资源时使用非阻塞 io?
做了AB测试,结果出乎意料(tomcat比nodejs快)。我使用的是带有 Intel Core i5-5200 @ 2.20GHz 和 8GB RAM(戴尔笔记本)的 Windows 7 Pro。我的nodejs版本是v8.9.0,java版本是1.8.045,tomcat是5.5.17。
nodejs代码:
const path = require('path');
const Koa = require('koa');
const Router = require('koa-router');
const staticServer = require('koa-static');
const app = new Koa();
const router = new Router();
app.use(staticServer( path.join(__dirname, 'static')) );
app.listen(8001);
nodejs 结果是:
E:\soft-new\apache\Apache24\bin>ab -c 20 -n 1000 http://localhost:8001/benu_crm/a.html
This is ApacheBench, Version 2.3 <$Revision: 1748469 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking localhost (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Completed 1000 requests
Finished 1000 requests
Server Software:
Server Hostname: localhost
Server Port: 8001
Document Path: /benu_crm/a.html
Document Length: 3 bytes
Concurrency Level: 20
Time taken for tests: 0.679 seconds
Complete requests: 1000
Failed requests: 0
Total transferred: 209000 bytes
HTML transferred: 3000 bytes
Requests per second: 1472.67 [#/sec] (mean)
Time per request: 13.581 [ms] (mean)
Time per request: 0.679 [ms] (mean, across all concurrent requests)
Transfer rate: 300.57 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.2 0 1
Processing: 6 13 3.0 13 26
Waiting: 6 11 2.7 10 23
Total: 6 13 3.0 13 26
Percentage of the requests served within a certain time (ms)
50% 13
66% 14
75% 15
80% 15
90% 18
95% 20
98% 21
99% 23
100% 26 (longest request)
而 tomcat 结果是:(对于 tomcat,我只是制作了一个没有任何 java 代码的 a.html)
E:\soft-new\apache\Apache24\bin>ab -c 20 -n 1000 http://localhost:8050/benu_crm/a.html
This is ApacheBench, Version 2.3 <$Revision: 1748469 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking localhost (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Completed 1000 requests
Finished 1000 requests
Server Software: Apache-Coyote/1.1
Server Hostname: localhost
Server Port: 8050
Document Path: /benu_crm/a.html
Document Length: 3 bytes
Concurrency Level: 20
Time taken for tests: 0.171 seconds
Complete requests: 1000
Failed requests: 0
Total transferred: 222000 bytes
HTML transferred: 3000 bytes
Requests per second: 5847.61 [#/sec] (mean)
Time per request: 3.420 [ms] (mean)
Time per request: 0.171 [ms] (mean, across all concurrent requests)
Transfer rate: 1267.74 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.2 0 2
Processing: 0 3 1.3 3 8
Waiting: 0 3 1.4 3 8
Total: 0 3 1.3 3 8
Percentage of the requests served within a certain time (ms)
50% 3
66% 4
75% 4
80% 4
90% 5
95% 6
98% 6
99% 7
100% 8 (longest request)
@EugèneAdell 谢谢。我将 a.html
的大小增加到 309,344 字节。然后tomcat 5.5.17和nodejs koa2差不多。稍后我会尝试NIO tomcat并把结果也放上去。但它仍然让我感到惊讶,因为 BIO tomcat 几乎与 koa2 相当。
nodejs 结果:
E:\soft-new\apache\Apache24\bin>ab -c 20 -n 1000 http://localhost:8001/benu_crm/a.html
This is ApacheBench, Version 2.3 <$Revision: 1748469 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking localhost (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Completed 1000 requests
Finished 1000 requests
Server Software:
Server Hostname: localhost
Server Port: 8001
Document Path: /benu_crm/a.html
Document Length: 309344 bytes
Concurrency Level: 20
Time taken for tests: 1.071 seconds
Complete requests: 1000
Failed requests: 0
Total transferred: 309555000 bytes
HTML transferred: 309344000 bytes
Requests per second: 933.65 [#/sec] (mean)
Time per request: 21.421 [ms] (mean)
Time per request: 1.071 [ms] (mean, across all concurrent requests)
Transfer rate: 282243.05 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.3 0 3
Processing: 8 21 12.0 20 386
Waiting: 2 10 2.2 9 23
Total: 8 21 12.0 20 386
Percentage of the requests served within a certain time (ms)
50% 20
66% 22
75% 23
80% 23
90% 25
95% 26
98% 29
99% 31
100% 386 (longest request)
tomcat 结果:
E:\soft-new\apache\Apache24\bin>ab -c 20 -n 1000 http://localhost:8050/benu_crm/a.html
This is ApacheBench, Version 2.3 <$Revision: 1748469 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking localhost (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Completed 1000 requests
Finished 1000 requests
Server Software: Apache-Coyote/1.1
Server Hostname: localhost
Server Port: 8050
Document Path: /benu_crm/a.html
Document Length: 309344 bytes
Concurrency Level: 20
Time taken for tests: 0.916 seconds
Complete requests: 1000
Failed requests: 0
Total transferred: 309573000 bytes
HTML transferred: 309344000 bytes
Requests per second: 1091.64 [#/sec] (mean)
Time per request: 18.321 [ms] (mean)
Time per request: 0.916 [ms] (mean, across all concurrent requests)
Transfer rate: 330021.72 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.4 0 1
Processing: 4 18 3.6 17 45
Waiting: 0 2 2.8 1 22
Total: 4 18 3.6 18 45
Percentage of the requests served within a certain time (ms)
50% 18
66% 18
75% 19
80% 19
90% 21
95% 23
98% 27
99% 37
100% 45 (longest request)
最佳答案
感谢 tomcat-users邮件列表和 devshed 为此 benchmark ,良好的 Tomcat 性能更可能归功于 Java 运行时:
How is it possible for pure-Java Tomcat to serve static resource faster than Apache httpd ? The main reason we can think of: because Tomcat is written in Java and because Java bytecode can be natively compiled and highly optimized at runtime, well-written Java code can run very fast when it runs on a mature Java VM that implements many runtime optimizations, such as the Sun Hotspot JVM. After it runs and serves many requests, the JVM knows how to optimize it for that particular use on that particular hardware. On the other hand, Apache httpd is written in C, which is completely compiled ahead of runtime.
但是,由于您的测试是多次访问一个小文件,因此也可能是 Tomcat 的设计比 Node.js 的设计更高效,特别是对于“接受连接和开始服务”部分。网络捕获可能有助于了解 Node.js 中的这种延迟是从哪里来的
关于java - 为什么tomcat比提供静态资源的nodejs快,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51062767/
这看起来很基础,但我想不通。是否有一种简单的 CSS 唯一方法可以使 cssa 真正快速淡入并缓慢淡出。这是为了改变多个 div 的颜色。大约 0.5 秒的缓入和 2 秒的缓出。 谢谢! 最佳答案 你
我一直在用各种语言和实现实现相同的代码(在 Blackjack 中发牌而不爆牌的方法的数量)。我注意到的一个奇怪之处是,Python 在 C 中调用分区函数的实现实际上比用 C 编写的整个程序快一点。
如果我没看错,/ 意味着它右边的节点必须是左边节点的直接子节点,例如/ul/li 返回 li 项,它们是作为文档根的 ul 项的直接子项。 //ul//li 返回 li 项,它们是文档中某处任何 ul
如何随机更新一个表。所以你给一列一个随机值。并且该列(例如“顶部”)是唯一的。如果您在数字 10 到 20 之间进行选择,并且您有 10 行,那么您就不能有未使用的数字。如果你有 Test table
这在一小部分是一个问题(因为我不明白为什么它会有所不同),在很大程度上是一篇希望能帮助其他一些可怜的程序员的帖子。 我有一个代码库,是我大约 5-7 年前第一次开始 Android 编程时编写的,它具
我正在尝试过滤关系表以获得满足两个条件的表子集(即:我想要 color_ids 为 1 或 2 的条目的所有 ID)。这是一张结实的 table ,所以我正在尝试尽可能多地进行优化。 我想知道是否有人
在上一篇《聊聊PHP中require_once()函数为什么不好用》中给大家介绍了PHP中require_once()为什么不好用的原因,感兴趣的朋友可以去阅读了解一下~ 那么本文将给大家介绍PH
很难说出这里问的是什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或言辞激烈,无法以目前的形式合理回答。如需帮助澄清此问题以便可以重新打开,visit the help center . 10年前关
有没有办法提高glReadPixels的速度?目前我做: Gdx.gl.glReadPixels(0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeig
通常,我以函数形式`:=`()来计算data.table中的多列,认为这是最有效的方法。但是我最近发现它比简单地重复使用:=慢。至少在我的电脑上。 我猜想:=的功能形式可能会产生一些开销,但这是它变慢
我的问题是针对 Windows 环境中多线程的性能问题。 在测试我的代码后,我得到的结果是增加线程数不会提高并行计算的性能,并且在经过一些计数后变得更少。到底是怎么回事?是否可以找出最佳线程数的公式:
我看到很少有相同问题的主题,但我仍然无法解决我的问题。这是我的代码 - 使用 XOR 加密的 C 套接字编程 当服务器和客户端连接时:- 用户发送消息,例如:你好- 服务器响应,例如:(服务器):你好
我正在定义继承自 Shape 类并实现“几何”属性的形状。 这是一个例子: public class Landmark : Shape { public override bool IsInB
相同代码在 Android(1Ghz Snapdragon)上的执行速度比我在 3.3 Ghz Core 2 Duo 的 PC(在桌面应用程序中)快 2 倍(PC 的类被复制到 Android 项目)
我需要将一个值与一组数组进行比较。但是,我需要比较 foreach 中的多个值。如果使用 in_array,它可能会很慢,真的很慢。有没有更快的选择?我当前的代码是 foreach($a as $b)
这个问题在这里已经有了答案: How do I write a correct micro-benchmark in Java? (11 个答案) 关闭 9 年前。 今天我做了一个简单的测试来比较
如果比较不应该以这种方式进行,我深表歉意。我是编程新手,只是很好奇为什么会这样。 我有一个包含词嵌入的大型二进制文件 (4.5gb)。每行都有一个单词,后面跟着它的嵌入,它由 300 个浮点值组成。我
我经历了几个不同的四元数乘法实现,但我很惊讶地发现引用实现是迄今为止我最快的实现。这是有问题的实现: inline static quat multiply(const quat& lhs, cons
我写了一个简单的例子,估计调用虚函数的平均时间,使用基类接口(interface)和dynamic_cast和调用非虚函数。这是它: #include #include #include #in
有没有人知道比“StackWalk”更好/更快的获取调用堆栈的方法?我还认为 stackwalk 在有很多变量的方法上也会变慢......(我想知道商业分析员是做什么的?)我在 Windows 上使用
我是一名优秀的程序员,十分优秀!