对于类似 etherpad 的应用程序,node.js 与 jetty 相比如何?

发布于 2024-09-10 03:02:10 字数 122 浏览 8 评论 0原文

我注意到 etherpad 在它还活着的时候(以及它的活着的克隆)使用了 Jetty。我正在考虑编写一个类似的程序,但我想使用node.js。

任何人都可以深入了解 Jetty/node.js 性能方面的优缺点吗?

I noticed that etherpad, when it was alive ( and living clones of it ) used Jetty. I'm considering writing a similar program but I want to use node.js instead.

Could anyone offer some insight into the pros and cons of Jetty/node.js performance-wise?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

栩栩如生 2024-09-17 03:02:10

Node.js 是新的热门库,由令人敬畏的快速 Google v8 Javascript 引擎提供支持。

Jetty 由 Java 提供支持,是一个非常强大的堆栈,为许多企业应用程序提供支持。

就性能而言,只要架构正确,我期望有类似的性能。我的单节点实例将在单个进程上运行,如果您想开始在进程之间共享数据,您可能需要查看诸如 memcached 或 redis 之类的东西。

Node 可能使用较少的内存(因为没有 JVM)并且执行速度也可能稍慢。 (这可能会或可能不会被注意到)

就我个人而言,我认为 Nginx + Node + Redis 将为您提供充足的性能,并有足够的发展空间。

如果您更喜欢基于 JVM 的解决方案,jetty 甚至 aleph 都可以工作。

如果您想要 Ruby 解决方案,Event Machine 可以使用。

如果您需要的只是简单的 pub/sub 之类的东西,比如 nginx 推送模型 就可以了。

我认为上述任何解决方案都可以规模化。

Node.js is the new hot library, powered by the awesome fast Google v8 Javascript engine.

Jetty is powered by Java, and is a pretty robust stack that powers many enterprisey apps.

Performance wise I would expect similar performance provided the architecture is right. I single node instance will run on a single proc, if you want to start sharing data between procs you probably need to look at something like memcached or redis.

Node is likely to use less memory (since there is no JVM) and is also likely to perform slightly slower. (which may or may not be noticeable)

Personally, I think Nginx + Node + Redis would give you ample performance with plenty room grow down the line.

If you prefer a JVM based solution, jetty or even aleph could work.

If you want a Ruby solution, Event Machine could work.

If all you need is simple pub/sub something like nginx push model could do.

I think any of the above solutions could be made to scale.

深海夜未眠 2024-09-17 03:02:10

这个http://praxx.is/ post/486034949/comet-with-bayeux-node-js-vs-jetty-and-cometd 是一个有趣的 Jetty 与 NodeJS 基准测试。 Jetty 击败 Node。

注意事项:http://news.ycombinator.com/item?id=1337228

This http://praxx.is/post/486034949/comet-with-bayeux-node-js-vs-jetty-and-cometd is an interesting Jetty vs NodeJS benchmark. Jetty trounces Node.

Caveats here: http://news.ycombinator.com/item?id=1337228

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文