[Performance Tuning] - Re: High Swap Utilization, lot's of RAM free
by PeterJ
RAM is not the same as Java heap. Looking at RAM usage typically does not mean much. Unless you analyze the Java heap usage, it is difficult to say how much memory the app is really using, or how much it really needs. JBoss AS by itself does not need much (64M is probably more than enough), and unless you have a very unusual application I doubt that your application would need 14G of heap.
And yes the settings I gave are starting points. You need to analyze the heap usage and adjust those accordingly.
I thought occurred to me that the JVM, if given the opportunity (such as offered by your initial heap settings) might grab a significant chunk of memory if it is available. If I have some time, I might wrestle one of our Windows boxes from the performance team and try it out, or maybe one of them knows off-hand.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077856#4077856
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077856
18Â years, 8Â months
[JBoss Seam] - Layering the code in Seam
by magoicochea
Hello
First of all after reading some documentation about seam I have to say that I am impressed by the framework, it seems to solve a lot of problems that I had when trying to develop web applications regardless whether it was .NET or J2EE.
However, after seeing the examples I didn't like that the presentation, business and data access code is all mixed up on the same action bean. On the hotel booking example it mentions that for big applications it may be a good idea to layer the code, however, I have not seen this on any example.
I am used to do this when working with Spring/Hibernate using Services and DAOs, so at the end I have one layer managing the presentation layer, another for business logic and finally one for data access logic. How would this pattern be implemented on a Seam Application?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077844#4077844
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077844
18Â years, 8Â months