Re: Struts2 Performance Tuning

2013-06-25 Thread Dave Newton
On Tue, Jun 25, 2013 at 7:40 AM, Sreekanth S. Nair < sreekanth.n...@egovernments.org> wrote: > More over most plugins like json, > jquery etc having static file bundled inside corresponding jar how about > that? > Same thing: extrapolate--a static file is a static file, although I'm not aware of

Re: Struts2 Performance Tuning

2013-06-25 Thread Sreekanth S. Nair
i'm using s2 ui only but the performance tuning related to FM is confusing, one place it saying to set a cache property and other place its saying to extract static resources from jar to web. More over most plugins like json, jquery etc having static file bundled inside corresponding jar how

Re: Struts2 Performance Tuning

2013-06-25 Thread Dave Newton
t; Underlying working of Struts2 is more or less and same. > > > > > > Sent from BlackBerry® on Airtel > > > > -Original Message- > > From: "Sreekanth S. Nair" > > Date: Mon, 24 Jun 2013 13:03:48 > > To: Struts Users Mailing List >

Re: Struts2 Performance Tuning

2013-06-25 Thread Sreekanth S. Nair
: "Sreekanth S. Nair" > Date: Mon, 24 Jun 2013 13:03:48 > To: Struts Users Mailing List > Reply-To: "Struts Users Mailing List" > Subject: Struts2 Performance Tuning > > Is this link ( > http://struts.apache.org/release/2.3.x/docs/performance-tuning.htm

Re: Struts2 Performance Tuning

2013-06-24 Thread umeshawasthi
iling List Reply-To: "Struts Users Mailing List" Subject: Struts2 Performance Tuning Is this link ( http://struts.apache.org/release/2.3.x/docs/performance-tuning.html) points to the latest performance tuning for strust2 ? freemarker template caching is confusing whether we need to locally

Struts2 Performance Tuning

2013-06-24 Thread Sreekanth S. Nair
Is this link ( http://struts.apache.org/release/2.3.x/docs/performance-tuning.html) points to the latest performance tuning for strust2 ? freemarker template caching is confusing whether we need to locally copy those template files or not? Can any one please provide some good resources for step

Re: Performance issue with nested iterator

2012-07-05 Thread Łukasz Lenart
t in commit > https://github.com/mmalmeida/struts-performance/commit/aba93098174c8c8c1684ffdd9bf332b212a893a > , it's not present in the latest commit if you turn devMode to false. > > The issue was the freemarker version 2.3.9 in that commit. Updating to > 2.3.19 makes perform

Re: Performance issue with nested iterator

2012-07-05 Thread Miguel Almeida
I believe I've found the culprit. While the problem is present in commit https://github.com/mmalmeida/struts-performance/commit/aba93098174c8c8c1684ffdd9bf332b212a893a , it's not present in the latest commit if you turn devMode to false. The issue was the freemarker version 2.3.9 in t

Re: Performance issue with nested iterator

2012-07-05 Thread Miguel Almeida
; Sure, Lukas: > > https://github.com/mmalmeida/struts-performance > > > > On Thu, 2012-07-05 at 06:48 +0200, Lukasz Lenart wrote: > > > Could you post somewhere (GitHub) the whole code base ? > > > > > > Regards > >

Re: Performance issue with nested iterator

2012-07-05 Thread Miguel Almeida
Sure, Lukas: https://github.com/mmalmeida/struts-performance On Thu, 2012-07-05 at 06:48 +0200, Lukasz Lenart wrote: > Could you post somewhere (GitHub) the whole code base ? > > > Regards

Re: Performance issue with nested iterator

2012-07-04 Thread Lukasz Lenart
Could you post somewhere (GitHub) the whole code base ? Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts

Performance issue with nested iterator

2012-07-04 Thread Miguel Almeida
Dear all, I have got a performance issue on a nested iterator, running Struts 2.3.1.1. Consider the code below, (the example is a Book with chapters and subchapters and we're displaying the book index - bookIndex is a Map>. This takes several seconds to load (map has size 10, each li

Re: Critical performance issue in production environment due to OGNL 3.0 blockages!

2011-02-23 Thread Shishir Saxena
Date: 02/23/2011 10:47AM Subject: Re: Critical performance issue in production environment due to OGNL 3.0 blockages! Hi, Could you post code for MainAppLogin.jsp and StartMainApp interceptor ? And why are you using such interceptors in a production environment ? - TimerInterceptor

Re: Critical performance issue in production environment due to OGNL 3.0 blockages!

2011-02-23 Thread Lukasz Lenart
Hi, Could you post code for MainAppLogin.jsp and StartMainApp interceptor ? And why are you using such interceptors in a production environment ? - TimerInterceptor - ProfilingActivationInterceptor - DebuggingInterceptor Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ Kapituła Jav

Re: Critical performance issue in production environment due to OGNL 3.0 blockages!

2011-02-23 Thread Shishir Saxena
Hi My web application based on Struts 2.2.1 is using OGNL 3.0. This web application is rolled into production; however, due to serious performance considerations the website is in danger of being rolled back. The thread dumps indicate 'BLOCKING' at ognl.OgnlRuntime.invokeMethod (OgnlRu

Re: Best performance practices with Struts 2...anyone!

2011-02-19 Thread Shishir Saxena
I have got the following documentation from Struts website regarding performance best practices: http://struts.apache.org/2.0.11.1/docs/performance-tuning.html However, it will be great if people could provide more inputs on this thread. Regards Shishir -Shishir Saxena wrote: - To

RE: Best performance practices with Struts 2...anyone!

2011-02-17 Thread Jerson John
AM To: 'Struts Users Mailing List' Subject: RE: Best performance practices with Struts 2...anyone! Hi, I am trying to generate SQL query using session.createSQLQuery and returning the list object..This select query contains joins and so it cannot be mapped to any of my model objects

RE: Best performance practices with Struts 2...anyone!

2011-02-17 Thread Jerson John
Hi, I am trying to generate SQL query using session.createSQLQuery and returning the list object..This select query contains joins and so it cannot be mapped to any of my model objects.How can I now get the values in my jsp page using iterator tag in Struts 2... Please help me on this Many Than

Re: Best performance practices with Struts 2...anyone!

2011-02-17 Thread Shishir Saxena
Hi I need to have the best practices which could be applied on Struts2 based application to keep the system best performant and scalable. Can somebody help me here please? Thanks and regards Shishir =-=-= Notice: The information contained in this e-mail message and/or attach

RE: Documentation about Struts2 performance improvement

2010-11-27 Thread Martin Gainty
esponsabilité pour le contenu fourni. > Date: Sat, 27 Nov 2010 17:05:34 -0600 > Subject: Documentation about Struts2 performance improvement > From: oscar.kalde...@gmail.com > To: user@struts.apache.org > > Hi to all, i was wondering if there's some resource, docu

Documentation about Struts2 performance improvement

2010-11-27 Thread Oscar
Hi to all, i was wondering if there's some resource, documentation or something like that to improve Struts2 performance, i don't know, like disabling components that i don't use (for example i never use struts themes in S2) or something like that, this because i am working in

Re: Optimize webserver performance

2010-10-10 Thread Maurizio Cucchiara
Sometimes put dependencies in the tomcat's library could become a forced choice (for example when using Database Connection Pools). In all other case, it can be a very annoying situation (especially you in term of dependencies' clarity). That said using tomcat's common library, avoiding ORM framew

Optimize webserver performance

2010-10-09 Thread abhishek jain
Hi friends, I have a few different applications running on a small VPS, tomcat 5.5.x, struts 1.2 , mysql. I need to know , what can i do to optimize the server files, like can i place the mysql-..jar file in the tomcat commons lib folder. ie should i place all the common files i have in all my app

Re: Performance issues

2010-08-19 Thread Dale Newfield
On 8/18/10 7:42 PM, Nathan Meeker wrote: Well, I added Javatemplate plugin: Has anyone figured out any way to use this selectively? Meaning on some portion of a site (certain .jsps, etc.) or just on tags using the simple theme (still using the freemarker implementation for non-simple tags)?

Re: Performance issues

2010-08-18 Thread Nathan Meeker
Well, I added Javatemplate plugin: http://struts.apache.org/2.x/docs/javatemplates-plugin.html and now the page renders in about 3 seconds. That solves the immediate issue for me. Not sure what's going on with struts2 tags, but in the default configuration they seem to be hideously slow. Am I do

Re: Performance issues

2010-08-18 Thread Greg Lindholm
I have found most the struts tags to be really slow but seems to stick out. For really high performance pages I find I have to not use struts tags. See this old thread: http://old.nabble.com/S2-%3Cs%3Aform%3E-in-interator-really-slow-tc28073962.html On Wed, Aug 18, 2010 at 4:46 PM, Nathan

Re: Performance issues

2010-08-18 Thread Nathan Meeker
I just enabled the cache (using the settings you suggested) and the time is down to 15 seconds (from 60-70). Is there anything else I should be doing? Thanks! On Wed, Aug 18, 2010 at 2:24 PM, Lukasz Lenart wrote: > Did you enabled FreeMarker cache? > http://struts.apache.org/2.x/docs/freemarker.

Re: Performance issues

2010-08-18 Thread Lukasz Lenart
Did you enabled FreeMarker cache? http://struts.apache.org/2.x/docs/freemarker.html Cache sesction Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ Kapituła Javarsovia 2010 http://javarsovia.pl - To unsubscribe, e-m

Performance issues

2010-08-18 Thread Nathan Meeker
I have a small Struts 2 application that displays a JSP page with a table of about 300 rows. Each row in turn contains about 20 links to other actions. The JSP is created using Struts2 tags (OGNL). There is a loop that iterates over a collection and pulls properties of the elements combining them i

Re: performance issues with enabling rtexprvalue

2010-07-23 Thread Chris Pratt
It wasn't a performance concern, it was a security concern. Since the OGNL and JSP EL were processed by separate processors, it's possible to have one transform user code to the other which is a very simple way of allowing an end user to inject executable code into your system. (*C

Re: performance issues with enabling rtexprvalue

2010-07-23 Thread Dale Newfield
On 7/23/10 11:26 AM, Scott Koenig wrote: I was wondering if anyone knew how great the performance optimization gains are in leaving runtime expression values disabled for assorted Struts tags, or where I could find some resources on the topic. It seems incredibly useful to be able to set a

performance issues with enabling rtexprvalue

2010-07-23 Thread Scott Koenig
Hi, I was wondering if anyone knew how great the performance optimization gains are in leaving runtime expression values disabled for assorted Struts tags, or where I could find some resources on the topic. It seems incredibly useful to be able to set a variable to a value calculated on the fly

Re: Struts 2 Tags / Freemarker performance

2010-01-15 Thread Musachy Barroso
hum, I take it back, I shouldnt be making suggestions before trying things out :). What I meant was that you could set the theme to something else in individual tags, and that should work for that specific tag, but I forgot about the 'struts.ui.templateSuffix' setting. What you mentioned would be a

Re: Struts 2 Tags / Freemarker performance

2010-01-15 Thread Néstor Boscán
I've tried this approach and the page simply doesn't work. I don't know if you are aware but in 2.0.* there were this configuration options that cached the freemaker processing. Regards, Néstor Boscán On Fri, Jan 15, 2010 at 2:10 PM, Dale Newfield wrote: > Musachy Barroso wrote: > >> Not reall

Re: Struts 2 Tags / Freemarker performance

2010-01-15 Thread Dale Newfield
Musachy Barroso wrote: Not really, you can mix the tags using the "theme" attribute, not very pretty, but that should work. Just to make sure I understand: If I set , then any time a tag is being processed with the simple theme it'll use the java implementation, but for any tags not using th

Re: Struts 2 Tags / Freemarker performance

2010-01-15 Thread Musachy Barroso
Not really, you can mix the tags using the "theme" attribute, not very pretty, but that should work. musachy On Fri, Jan 15, 2010 at 10:27 AM, Dale Newfield wrote: > On Thu, Jan 14, 2010 at 8:00 PM, Musachy Barroso wrote: >> I would expect that, FreeMarker templates(+ struts code) will always >

Re: Struts 2 Tags / Freemarker performance

2010-01-15 Thread Dale Newfield
On Thu, Jan 14, 2010 at 8:00 PM, Musachy Barroso wrote: > I would expect that, FreeMarker templates(+ struts code) will always > be slower than java code. If you are using the simple tags, give a try > to the Java Tags: > > http://cwiki.apache.org/S2PLUGINS/java-templates-plugin.html I assume thi

Re: Struts 2 Tags / Freemarker performance

2010-01-14 Thread Musachy Barroso
;ve been evaluating struts 2.1.8.1 and have found some troubling > performance bottlenecks relating to the struts tag and freemarker. I have a > JSP that has 7 struts2 tags in it. (A simple signup form) > > I noticed in my load testing that the throughput of this page was 4-5 times >

Struts 2 Tags / Freemarker performance

2010-01-14 Thread Mark Greene
I've been evaluating struts 2.1.8.1 and have found some troubling performance bottlenecks relating to the struts tag and freemarker. I have a JSP that has 7 struts2 tags in it. (A simple signup form) I noticed in my load testing that the throughput of this page was 4-5 times slower under

Re: Performance issue using tag

2009-11-03 Thread musomesa
- From: Musachy Barroso To: Struts Users Mailing List Sent: Tue, Nov 3, 2009 8:04 am Subject: Re: Performance issue using tag I would suggest you to use a profiler to find out for sure what is aking the time. You can use VisualVM which comes with java 6 or the xcellent jrockit mission control

Re: Performance issue using tag

2009-11-02 Thread Musachy Barroso
ity that the delay was caused by the >   EJB lookup / execution > > I hope my analysis above is correct. Hope someone with more experience can > provide their input here as I'm really getting pasted about the performance > issue on a daily basis. > > Thanks! > Wong > &g

Re: Performance issue using tag

2009-11-02 Thread CS Wong
execution I hope my analysis above is correct. Hope someone with more experience can provide their input here as I'm really getting pasted about the performance issue on a daily basis. Thanks! Wong On Tue, Nov 3, 2009 at 6:27 AM, Musachy Barroso wrote: > It is the same struts code runnin

Re: Performance issue using tag

2009-11-02 Thread Musachy Barroso
It is the same struts code running all the time, so it should as fast(or slow) every time. The only thing that changes is the call to the EJB, so I would bet that the problem is there. musachy On Mon, Nov 2, 2009 at 9:57 AM, CS Wong wrote: > Hi, > > I seem to be having a performance

Performance issue using tag

2009-11-02 Thread CS Wong
Hi, I seem to be having a performance issue in some of my Struts 2 actions. On several of my pages, I render a couple of drop down tags in my output page. I populate the drop down tags by instantiating an tag and invoking the methods in the bean to call an EJB service and populating a collection

Re: Struts 2 performance

2009-08-03 Thread Musachy Barroso
he profiler that comes with >> JRockit: >> >> http://www.oracle.com/technology/products/jrockit/index.html >> > > -- > View this message in context: > http://www.nabble.com/Struts-2-performance-tp24732029p24801034.html &

Re: Struts 2 performance

2009-08-03 Thread Xyzr
View this message in context: http://www.nabble.com/Struts-2-performance-tp24732029p24801034.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For a

RE: Struts 2 performance

2009-07-30 Thread Martin Gainty
2009 08:40:30 -0700 > Subject: Re: Struts 2 performance > From: musa...@gmail.com > To: user@struts.apache.org > > If you have a commercial profiler that works on Mac, it could be good > enough. But after I have been using it for a few days I was like > "whoaa" this

Re: Struts 2 performance

2009-07-30 Thread Musachy Barroso
If you have a commercial profiler that works on Mac, it could be good enough. But after I have been using it for a few days I was like "whoaa" this thing has improved a lot. It has a feature for profiling lock contention which is very sweet. musachy On Wed, Jul 29, 2009 at 11:38 PM, Dale Newfield

Re: Struts 2 performance

2009-07-29 Thread Dale Newfield
Musachy Barroso wrote: Just to save you some time (because I just spend sometime myself on this), I would suggest you to use the profiler that comes with JRockit: http://www.oracle.com/technology/products/jrockit/index.html You will have to run your application with the JRockit jre to use it.

Re: Struts 2 performance

2009-07-29 Thread Musachy Barroso
ler I have ever used. With that in hand you can come back with some data, and then we can probably make some suggestions. Check this also: http://struts.apache.org/2.x/docs/performance-tuning.html musachy On Wed, Jul 29, 2009 at 9:33 PM, Say Jon wrote: > Hi guys, > I have been using Struts 2

Struts 2 performance

2009-07-29 Thread Say Jon
Hi guys, I have been using Struts 2 for a while for some of my web apps. Performance is OK. I'm getting less than 400ms when I use the timerinterceptor for a regular "retrieve" operation. I'm just wondering, with the interceptor architecture it seems that there are many "

Re: struts 2 adoption/performance/scalability

2009-07-17 Thread Jim Kiley
I don't have any benchmark numbers, but we're using it in production at my current client, running a b2b ecommerce site with about 3,000 active customers that pushed through about 4,000 orders in the last month. jk On Thu, Jul 16, 2009 at 7:12 PM, Musachy Barroso wrote: > I am trying to "sell" t

Re: struts 2 adoption/performance/scalability

2009-07-16 Thread Wes Wannemacher
On Thursday 16 July 2009 07:12:25 pm Musachy Barroso wrote: > I am trying to "sell" the idea of using Struts 2 to my employer, and I > know these questions will come up: > > 1. Who is using it? > 2. How does it perform, compared to plain servlets and jsps? > 3. How well does it scale? > 4. Has anyo

struts 2 adoption/performance/scalability

2009-07-16 Thread Musachy Barroso
I am trying to "sell" the idea of using Struts 2 to my employer, and I know these questions will come up: 1. Who is using it? 2. How does it perform, compared to plain servlets and jsps? 3. How well does it scale? 4. Has anyone benchmark it under load? numbers? 2-4 are somewhat related. I am sure

Validation performance

2009-07-09 Thread Mitch Claborn
Is there any performance difference between defining validations in an xml file (ActionName-validation.xml) or as annotations within the Action? Is one method preferred over the other? Mitch - To unsubscribe, e-mail: user

Re: Performance issues in showcase sample struts 2.1.6 application

2009-06-27 Thread Wes Wannemacher
In particular, look for the section on creating a production profile. The tag library searches various locations for the freemarker templates, the last place it looks is inside the core jar file. Copying the template you use out of the jar will help quite a bit. Also, if performance is a huge

Re: Performance issues in showcase sample struts 2.1.6 application

2009-06-26 Thread Musachy Barroso
You might want to start here: http://struts.apache.org/2.x/docs/performance-tuning.html musachy On Fri, Jun 26, 2009 at 12:57 PM, Daniel Guryca wrote: > Anybody ? > > Daniel > > On Fri, Jun 26, 2009 at 5:54 PM, Daniel Guryca wrote: >> I have found that devMode was set to tr

Re: Performance issues in showcase sample struts 2.1.6 application

2009-06-26 Thread Daniel Guryca
aniel Guryca wrote: >> >> Hi, >> >> I have just deployed included showcase sample application on to my tomcat 6. >> >> I'm very amazed how SLOWLY it runs. >> I'm looking for a framework for my company and Struts 2 seems very good to >> me (I ha

Re: Performance issues in showcase sample struts 2.1.6 application

2009-06-26 Thread Daniel Guryca
but too unstable and bugy for bigger apps) but how about > the Struts 2 performance ? > > I would expect much much better results (similar simple pages with stripes or > even grails almost fly - 700 and more req/s) !! > > I was running these on my dual core a...@2.1 Ghz using

Performance issues in showcase sample struts 2.1.6 application

2009-06-26 Thread Daniel Guryca
stable and bugy for bigger apps) but how about the Struts 2 performance ? I would expect much much better results (similar simple pages with stripes or even grails almost fly - 700 and more req/s) !! I was running these on my dual core a...@2.1 Ghz using apache bench. ab -c 10 -n 1

Re: Performance issue with large data(such as images)

2009-06-11 Thread fireapple
s.apache.org > For additional commands, e-mail: user-h...@struts.apache.org > > > Yes, I streamed it from an action. However, I could show the above table using an action to stream images. -- View this message in context: http://www.nabble.com/Performance-issue-with-large-data%28such-as-imag

Re: Performance issue with large data(such as images)

2009-06-10 Thread Dave Newton
fireapple wrote: Any way to resolve the security issue? If the user save the portrait in the hard drive(outside of app), I couldn't find a way to display it using URL. "" doesn't work at all. Stream it from an action/servlet/etc? Dave ---

RE: Performance issue with large data(such as images)

2009-06-10 Thread fireapple
mmands, e-mail: user-h...@struts.apache.org > > > - > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands, e-mail: user-h...@struts.apache.org > > > I also use the URL that points to an action in my jsp, such as: http:

Re: Performance issue with large data(such as images)

2009-06-10 Thread fireapple
Richard Sayre wrote: > > I should have also mentioned that there are security issues with > persisting to the hard drive. > > I would recommend saving to the database and loading the images as > needed. Do not save them to session. I do not think you will have a >

RE: Performance issue with large data(such as images)

2009-06-10 Thread Security Management
I should have also mentioned that there are security issues with persisting to the hard drive. I would recommend saving to the database and loading the images as needed. Do not save them to session. I do not think you will have a performance problem. Rich I have had problems when trying to

RE: Performance issue with large data(such as images)

2009-06-10 Thread Mitchell, Steven
Sayre [mailto:richardsa...@gmail.com] Sent: Wednesday, June 10, 2009 12:41 PM To: Struts Users Mailing List Subject: Re: Performance issue with large data(such as images) >Thanks, Rich, I''m happy to help. > If I use BLOB, I have to make a lot of change to my code. Therefore, I have > to pers

Re: Performance issue with large data(such as images)

2009-06-10 Thread Richard Sayre
I should have also mentioned that there are security issues with persisting to the hard drive. I would recommend saving to the database and loading the images as needed. Do not save them to session. I do not think you will have a performance problem. Rich

Re: Performance issue with large data(such as images)

2009-06-10 Thread Richard Sayre
outside WAR? No just make a base dir in your app called 'userAvatar' or something similar. Then persist the image as user_.gif ( = the user id). When they chage their image override the file. Also as stated by Pawel, make sure you have a performance problem before you try to sol

Re: Performance issue with large data(such as images)

2009-06-09 Thread Paweł Wielgus
Hi All, just as a side note, 300 users is a very small quantity of users. So i would recomend to check if there is a performance problem at all. Best greetings, Paweł Wielgus. 2009/6/9 Jim Collings : > Can't put em in your database as BLOB's with all the other user info? > >

Re: Performance issue with large data(such as images)

2009-06-09 Thread Jim Collings
Can't put em in your database as BLOB's with all the other user info? On Tue, Jun 9, 2009 at 4:26 PM, Dave Newton wrote: > fireapple wrote: >> >> If I want to persist images to the hard drive of server. Shall I persist >> the >> data inside WAR or outside? Because user can change their portrait, d

Re: Performance issue with large data(such as images)

2009-06-09 Thread Dave Newton
fireapple wrote: If I want to persist images to the hard drive of server. Shall I persist the data inside WAR or outside? Because user can change their portrait, does it mean it must be persisted outside WAR? You can't write stuff into your WAR. Dave --

Re: Performance issue with large data(such as images)

2009-06-09 Thread fireapple
eing the data from the database is? > > If you must use the least amount of memory as possible, persist the > images to the hard drive and store the file reference to the url in > the database. Or even store the images as userId_avatar.gif. That > way you can link the file to a use

Re: Performance issue with large data(such as images)

2009-06-09 Thread Richard Sayre
database. Or even store the images as userId_avatar.gif. That way you can link the file to a user id and have no need to store the url. Use a base directory for storing the images. Before you guess if something is a performance issue, you should test to see what the actual cost of each method of i

Performance issue with large data(such as images)

2009-06-09 Thread fireapple
ll have to access db for 300 times. Is there any solution (such as a design pattern or interceptor) for this performance issue? Many thanks! -- View this message in context: http://www.nabble.com/Performance-issue-with-large-data%28such-as-images%29-tp23945029p23945029.html Sent from the Struts - Us

Re: Struts performance metrics

2009-02-27 Thread Mohan Radhakrishnan
Yes. It does. Thanks. Now I find a big difference in performance. So unless I use freemarker I should be able to mix JSTL and OGNL and get some benefit. Iteration over a very large collection and access Javabean properties. JSTL - 2557 ms OGNL - 4499 ms Mohan -- View this message in context

Re: Struts performance metrics

2009-02-27 Thread Chris Pratt
ss the Value Stack directly using JSTL without > using > s:iterator ? > > Thanks, > Mohan > > -- > View this message in context: > http://www.nabble.com/Struts-performance-metrics-tp22077072p22247775.html > Sent from the Struts

Re: Struts performance metrics

2009-02-27 Thread Mohan Radhakrishnan
Ok. Are you able to access the Value Stack directly using JSTL without using s:iterator ? Thanks, Mohan -- View this message in context: http://www.nabble.com/Struts-performance-metrics-tp22077072p22247775.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts performance metrics

2009-02-21 Thread Steven Yang
> > > We plan to profe right from the beginning but I am not sure how JSTL can > replace Struts tags to increase performance. I understand that in order to > display data we can use JSTL. Struts tags are required to use the framework > fully. Isn't it ? > - I guess for

Re: Struts performance metrics

2009-02-21 Thread Dave Newton
Mohan Radhakrishnan wrote: I will use larger datasets and property access also. Wait, you weren't comparing property access speed? Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-m

Re: Struts performance metrics

2009-02-20 Thread Mohan Radhakrishnan
I will use larger datasets and property access also. We plan to profe right from the beginning but I am not sure how JSTL can replace Struts tags to increase performance. I understand that in order to display data we can use JSTL. Struts tags are required to use the framework fully. Isn'

Re: Struts performance metrics

2009-02-20 Thread Steven Yang
into another project and everything will run. I have deployed my project into 2-3 different projects(all using plain servlets) in my company and . And all worked fine, meaning no major compatibility issues. Except for one, I have the performance issues described on most places you have seen.

Re: Struts performance metrics

2009-02-20 Thread Dave Newton
Mohan Radhakrishnan wrote: I took a simple JSP using Struts tags and one using equivalent JSTL tags and deployed the WARS one by one in tomcat and used JProbe to attach to the session. I filtered the call graph to show OGNL only and then JSTL only. That doesn't really help me much. I ask

Re: Struts performance metrics

2009-02-20 Thread Mohan Radhakrishnan
Hi, I took a simple JSP using Struts tags and one using equivalent JSTL tags and deployed the WARS one by one in tomcat and used JProbe to attach to the session. I filtered the call graph to show OGNL only and then JSTL only. Actually our intention was to reduce the performance

Re: Struts performance metrics

2009-02-20 Thread Dave Newton
Mohan Radhakrishnan wrote: I profiled using JProbe and for a simple 'hello world' jsp I found that JSTL is taking a little more time than OGNl. OGNL : org.apache.jsp.example.HelloWorld_jsp._jspService(HttpServletRequest; HttpServletResponse) Cumulative time spent = 1103 --

Re: Struts performance metrics

2009-02-20 Thread Mohan Radhakrishnan
ent = 1103 --- JSTL org.apache.jsp.index_jsp._jspService(HttpServletRequest; HttpServletResponse) Cumulative time spent = 1429 Thanks, Mohan -- View this message in context: http://www.nabble.com/Struts-performance-metrics-tp22077072p221

Re: Struts performance metrics

2009-02-20 Thread Mohan Radhakrishnan
ent = 1103 --- JSTL org.apache.jsp.index_jsp._jspService(HttpServletRequest; HttpServletResponse) Cumulative time spent = 1429 Thanks, Mohan -- View this message in context: http://www.nabble.com/Struts-performance-metrics-tp22077072p221

Struts performance metrics

2009-02-18 Thread Mohan Radhakrishnan
Hi, There were some concerns raised about the performance of OGNL. We are evaluating Struts 2 for an internet site. How bad is the performance of OGNL ? Are there any methods to gather metrics by profiling that the forum recommends ? Thanks, Mohan -- View this message in context: http

RE: Struts 2 Performance

2009-01-24 Thread Matthew Seaborn
We are currently running on 2.0.11, have there been any performance improvements in subsequent releases? From: Matthew Seaborn Sent: 24 January 2009 13:39 To: Struts Users Mailing List Subject: Struts 2 Performance What's the latest news on the Struts 2 rendering performance issues? A b

Struts 2 Performance

2009-01-24 Thread Matthew Seaborn
What's the latest news on the Struts 2 rendering performance issues? A browse through the issue log suggests that despite a number of releases it still hasn't been resolved. https://issues.apache.org/struts/browse/WW-2128 https://issues.apache.org/struts/browse/WW-2808 The propose

Re: Fw: Re: Sturts-Tiles Performance

2009-01-20 Thread Chris Pratt
highly appriciate it. > > With regards > > > > > > Muhammad Owais Bilal Awan, > +966-56-5823-940 > > --- On Mon, 1/19/09, Muhammad Owais wrote: > > From: Muhammad Owais > Subject: Re: Sturts-Tiles Performance > To: "Struts Users Mailing List" > Date: Mond

Fw: Re: Sturts-Tiles Performance

2009-01-20 Thread Muhammad Owais
Hello,   Is there any solution to my problem? Can not somebody help me to resolve my issue? I will highly appriciate it. With regards   Muhammad Owais Bilal Awan, +966-56-5823-940 --- On Mon, 1/19/09, Muhammad Owais wrote: From: Muhammad Owais Subject: Re: Sturts-Tiles Performance To

Re: Sturts-Tiles Performance

2009-01-18 Thread Muhammad Owais
-- On Sun, 1/18/09, Dave Newton wrote: From: Dave Newton Subject: Re: Sturts-Tiles Performance To: "Struts Users Mailing List" Date: Sunday, January 18, 2009, 12:13 PM Muhammad Owais wrote: > Please assist to improve the performance issue. How? We know nothing about your implem

Re: Sturts-Tiles Performance

2009-01-18 Thread Dave Newton
Muhammad Owais wrote: Please assist to improve the performance issue. How? We know nothing about your implementation, where you're seeing performance problems, etc. Dave - To unsubscribe, e-mail: user-uns

Sturts-Tiles Performance

2009-01-18 Thread Muhammad Owais
Hello;   We have migrated our old application to Sturts-Tiles. We are facing some performance issues. The old implementation does use the Sturts but not the Tiles. However the new application implements both of them.   Please assist to improve the performance issue. With regards   Muhammad

Re : Performance issue

2009-01-07 Thread François Rouxel
Are you using many interceptors? - Message d'origine De : Pierre Thibaudeau À : Struts Users Mailing List Envoyé le : Mardi, 6 Janvier 2009, 16h19mn 36s Objet : Re: Performance issue Ye

Re: Performance issue

2009-01-06 Thread stanlick
This test sounds about as straightforward as parallel parking a freight train on a one lane road.

RE: Performance issue

2009-01-06 Thread Andy
I would be interested in seeing new benchmark results if anyone happens to generate some. Might want to avoid database-based tests due to caching. > Date: Tue, 6 Jan 2009 16:19:36 -0500> From: pierre.thibaud...@gmail.com> To: > user@struts.apache.org> Subject: Re: Performan

Re: Performance issue

2009-01-06 Thread Pierre Thibaudeau
Yes the model is *exactly* the same in the two cases. In fact, both S1 and S2 exist concurrently in the same Tomcat application. Each test is run using JMeter, with 10 users who randomly try to access one of 42 different pages involving 10 different types of results (that is, roughly speaking, 10

Re : Performance issue

2009-01-06 Thread François Rouxel
Is is the same model behind the MVC? fr/ - Message d'origine De : Pierre Thibaudeau À : Struts Users Mailing List Envoyé le : Mardi, 6 Janvier 2009, 13h09mn 39s Objet : Re: Performance

Re: Performance issue

2009-01-06 Thread Musachy Barroso
is overall about 30 to > 60 times slower than S1. This is based on comparing a number of pages > (repeatedly, testing with JMeter, etc.); the pages being compared > are, admittedly not 100% identical, but abstracting from the specific > differences, the performance of S2 is still more th

  1   2   3   4   5   6   >