Hi all,
I am just on reading [1]. There is mentioned, that object creation is very expensive and you should better reuse objects instead of creating them often.
Now I thought about scope of my backing beans. What should be better request or session?
If I have request scoped backing beans that get often created by ONE user and I have MANY users... will request scope slow down my web app?
Ok... application is also there, but that is an other stage :-) I would use such a backing bean only for *knowing* about ALL users logged into the application.
[1] http://www.oreilly.com/catalog/javapt/chapter/ch04.html
-Matthias

