-
JSF RI Performance/Scalability Metrics (7 messages)
- Posted by: Joseph Ottinger
- Posted on: January 22 2007 05:19 EST
Ryan Lubke has posted "JSF RI Performance/Scalability," in which he shows some metrics gathered from the latest JSF reference implementation release, showing a noticable increase in performance in both the client-side state save mode and the server-side state save mode. For the single-CPU test, the latest version gained 17 operations per second, from 53 to 70, on the server-side state mode (in which the server attaches the component model to a session and retains it internally.) Using the mode where the component model is serialized in the JSF-generated content, the operations/second went from 27 to 43, a gain of 16 operations per second. It's excellent news to see something like this, because it's a recognition that JSF's performance might not be there yet, and it's also a demonstration that improvements are being searched for and applied.Threaded Messages (7)
- Re: JSF RI Performance/Scalability Metrics by Time PassX on January 22 2007 07:50 EST
- Re: JSF RI Performance/Scalability Metrics by Joseph Ottinger on January 22 2007 07:53 EST
- Re: JSF RI Performance/Scalability Metrics by Victor C. on January 22 2007 02:45 EST
- Re: JSF RI Performance/Scalability Metrics by Joseph Ottinger on January 22 2007 07:53 EST
- Re: JSF RI Performance/Scalability Metrics by Eelco Hillenius on January 22 2007 16:45 EST
- Re: JSF RI Performance/Scalability Metrics by Jacob Hookom on January 22 2007 16:59 EST
- Re: JSF RI Performance/Scalability Metrics by Werner Punz on January 23 2007 05:02 EST
- JSF RI Performance/Scalability Metrics by m grouch on August 26 2007 15:08 EDT
-
Re: JSF RI Performance/Scalability Metrics[ Go to top ]
- Posted by: Time PassX
- Posted on: January 22 2007 07:50 EST
- in response to Joseph Ottinger
70 - 53 = 17 -
Re: JSF RI Performance/Scalability Metrics[ Go to top ]
- Posted by: Joseph Ottinger
- Posted on: January 22 2007 07:53 EST
- in response to Time PassX
70 - 53 = 17
Errrrrmmm... duh. Okay, I'm going to fix the news post (it had "For the single-CPU test, the latest version gained 13 operations per second, from 53 to 70...") and I'm ALSO going to pretend I was on heavy medication and, um, look! A bird! -
Re: JSF RI Performance/Scalability Metrics[ Go to top ]
- Posted by: Victor C.
- Posted on: January 22 2007 14:45 EST
- in response to Joseph Ottinger
um, look! A bird!
I use that. .V -
Re: JSF RI Performance/Scalability Metrics[ Go to top ]
- Posted by: Eelco Hillenius
- Posted on: January 22 2007 16:45 EST
- in response to Joseph Ottinger
And it is good to see actual numbers that show that client state saving comes with a cost as well; server state saving can work fine depending on your usage characteristics. It would be interesting to see the load on the network as well .
It's excellent news to see something like this, because it's a recognition that JSF's performance might not be there yet, and it's also a demonstration that improvements are being searched for and applied. -
Re: JSF RI Performance/Scalability Metrics[ Go to top ]
- Posted by: Jacob Hookom
- Posted on: January 22 2007 16:59 EST
- in response to Eelco Hillenius
http://weblogs.java.net/blog/jhook/archive/2006/12/jsf_statesaving_1.html
It's excellent news to see something like this, because it's a recognition that JSF's performance might not be there yet, and it's also a demonstration that improvements are being searched for and applied.
And it is good to see actual numbers that show that client state saving comes with a cost as well; server state saving can work fine depending on your usage characteristics.
It would be interesting to see the load on the network as well . -
Re: JSF RI Performance/Scalability Metrics[ Go to top ]
- Posted by: Werner Punz
- Posted on: January 23 2007 05:02 EST
- in response to Eelco Hillenius
Actually the impact on client side state saving is not neglectable, you basically stream a lot more data into the client. It used to be the only method to achieve a good back button behavior, but the RI and myfaces have fixed this problem to a good extent by recovering old states in back button situations, even on server side state saving. The main issue is to keep the savestated data as small as possible, I think jsf 1.2 has targeted this problem by allowing the handling of subtrees. (Not that the data really is that much anyway, most jsf implementations have tried to avoid simple serialisation in favor of direct data to array conversion for exactly this reason)
It's excellent news to see something like this, because it's a recognition that JSF's performance might not be there yet, and it's also a demonstration that improvements are being searched for and applied.
And it is good to see actual numbers that show that client state saving comes with a cost as well; server state saving can work fine depending on your usage characteristics.
It would be interesting to see the load on the network as well . -
JSF RI Performance/Scalability Metrics[ Go to top ]
- Posted by: m grouch
- Posted on: August 26 2007 15:08 EDT
- in response to Joseph Ottinger
Please, take a look at the metrics proposed here http://forum.java.sun.com/thread.jspa?threadID=5209771 They would also allow to benchmark JSF performance against JSP. RENDER phase measured against number of components of the page and against number or data rows (to identify scalability) APPLY REQUEST VALUES measured against number of components of the page and against number or data rows with input controls submitted with a form (to identify scalability) Same results are compared with JSP. Backing bean is simple get/set so performance metrics are accurate indication of JSF performance (not tied up with other technologies used on backend) Regards