gpt4 book ai didi

java - Play框架高延迟

转载 作者:行者123 更新时间:2023-12-02 09:20:02 25 4
gpt4 key购买 nike

我使用 struts2、hibernate 和 mysql 创建了一个 Web 应用程序。我迁移到 play 框架,所以现在我有两个应用程序实例,一个是用 play 编写的,另一个是用 struts2 编写的。我可以看到玩游戏时性能有了显着提升,但是当我使用 JMeter 模拟加载时,struts2 版本的扩展效果比玩游戏时延迟更低。这是为什么?这是否意味着坚持使用 struts2 更好? web应用程序(我正在从本地主机进行测试,除了模板语言之外,两个应用程序都有相同的代码,struts2在tomcat7上运行,而play在独立服务器的构建上运行)

         Struts 2 Version

Start time Tread Name Label time(ms) Status Bytes Latency
1 10:24:49.854 videovixx struts2 1-6 HTTP Request 981 Success 9116 6
2 10:24:49.830 videovixx struts2 1-5 HTTP Request 1101 Success 9116 16
3 10:24:49.780 videovixx struts2 1-3 HTTP Request 1264 Success 9116 2
4 10:24:49.774 videovixx struts2 1-2 HTTP Request 1309 Success 9116 15
5 10:24:49.741 videovixx struts2 1-1 HTTP Request 1509 Success 9116 10
6 10:24:49.868 videovixx struts2 1-7 HTTP Request 1513 Success 9116 43
7 10:24:49.933 videovixx struts2 1-10 HTTP Request 1471 Success 9116 5
8 10:24:50.294 videovixx struts2 1-27 HTTP Request 1156 Success 9116 134
9 10:24:50.037 videovixx struts2 1-15 HTTP Request 1503 Success 9116 68
10 10:24:49.950 videovixx struts2 1-11 HTTP Request 1608 Success 9116 18

Play Version
Start time Tread Name Label time(ms) Status Bytes Latency
1 10:24:49.809 videovixx play 2-1 HTTP Request 881 Success 13016 881
2 10:24:49.803 videovixx play 2-2 HTTP Request 1562 Success 13016 1562
3 10:24:49.839 videovixx play 2-3 HTTP Request 2146 Success 13016 2146
4 10:24:49.920 videovixx play 2-7 HTTP Request 2065 Success 13016 2065
5 10:24:50.080 videovixx play 2-15 HTTP Request 1905 Success 13016 1905
6 10:24:50.242 videovixx play 2-23 HTTP Request 1743 Success 13016 1743
7 10:24:50.493 videovixx play 2-36 HTTP Request 1492 Success 13016 1492
8 10:24:50.570 videovixx play 2-39 HTTP Request 1619 Success 13016 1619
9 10:24:50.646 videovixx play 2-43 HTTP Request 1571 Success 13016 1571

13016 2105

最佳答案

您需要根据应用程序的配置文件配置线程模型。更具体地说,您的应用程序似乎高度同步。 documentation建议以下配置:

play {
akka {
event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
loglevel = WARNING
actor {
default-dispatcher = {
fork-join-executor {
parallelism-min = 300
parallelism-max = 300
}
}
}
}
}

关于java - Play框架高延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14815518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com