• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Jsp response performance

 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Jsp response performance
===================
The problem:
We have performance problem while running a jsp-application.
More specific let's assume the jsp-page generates 1000 lines as a response to the browser.
I've done some testing and if the jsp makes 1000 print.out() it works out signaficantly
slower then to create a StringBuffer(with 1000 lines) and do one print.out.
Why is that ?
I thought the print.out where buffered in the response...
..Per Lovdinger
 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have the same problem. When i use iterator custom tag it works very slow. See my question from 30 July 2001.
 
reply
    Bookmark Topic Watch Topic
  • New Topic