Viewing profile — jholla14
jholla14
HN member- Joined
- Wed, Sep 28, 2011, 10:51 PM UTC
- HN karma
- 7
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About jholla14
No profile information was provided.
Recent public activity
-
comment
Comment #5456308
The Play example was totally unfair since it blocks on the database query which will block the underlying event loop and really lower the overall throughput.
-
comment
Comment #5456289
The problem is that the database queries were done in a blocking fashion. The test essentially blocks the main event loop which is of course going to kill performance.
-
comment
Comment #5456271
The play test was written totally incorrectly since it used blocking database calls. Since play is really just a layer on top of Netty it should perform nearly as well if correctly…