Re: T5 Performance

2009-04-26 Thread Sergey Didenko
Hi Bean, It would be interesting to see the difference with 64bit JVM. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

T5 Performance

2009-04-25 Thread Ben Gidley
Hi, I have been asked questions a few times about Tapestry 5 performance so I have decided to run a series of load tests. The first set is now complete and the results are at http://blog.gidley.co.uk/2009/04/tapestry-5-benchmarking.html. Has anyone got any ideas of good load tests I can perform or

Re: T5 Performance on a clustered environment

2007-07-13 Thread Howard Lewis Ship
To begin with, I have worked with many, many clients for whom scalability is a core concern. All of them use sticky sessions (with a backup server). Second, Tapestry is designed to store a pretty minimal amount of information in the HttpSession, in that it tends to store simple, immutable object

T5 Performance on a clustered environment

2007-07-13 Thread Fernando Bellas Permuy
Hi, I have been evaluating several Java Web frameworks. Regarding Tapestry 5, I like very much its POJO, non-intrusive programming model. I am interested in knowing how well Tapestry 5 applications perform on a clustered environment. Like most Java Web frameworks, Tapestry 5 handles action r

Re: T5 Performance on a clustered environment

2007-07-13 Thread Davor Hrg
Tapestry doesn't generate 2 requests all the time, only for action requests, but even then only for some actions. You are not forced to store you database objects in the session, you can store Object id only, you your self will be responsible for scaling issues, but tapestry will definitely give

T5 Performance on a clustered environment

2007-07-13 Thread Fernando Bellas Permuy
Hi, I have been evaluating several Java Web frameworks. Regarding Tapestry 5, I like very much its POJO, non-intrusive programming model. I am interested in knowing how well Tapestry 5 applications perform on a clustered environment. Like most Java Web frameworks, Tapestry 5 handles action r