Hello,
I have a page in my J2EE application(struts based) which need to refresh itself in every single minute.
How can I acheive this?
Page may fetch a huge data may be sometimes thousand(s) of rows with each row containing 300 bytes.
The point that is important to remember is that the two way roundtrip should consume less that a minute so that refreshing will be effective for the user.
What is the industry standard for a page with huge data be appeared on the screen?
regards,
Pratap
-
page refreshment minute wise! (4 messages)
- Posted by: pratap sinha
- Posted on: October 15 2004 05:21 EDT
Threaded Messages (4)
- page refreshment minute wise! by stephen smithstone on October 15 2004 06:15 EDT
- page refreshment minute wise! by pratap sinha on October 15 2004 06:45 EDT
-
page refreshment minute wise! by Barre Dijkstra on October 15 2004 07:17 EDT
- page refreshment minute wise! by pratap sinha on October 15 2004 09:44 EDT
-
page refreshment minute wise! by Barre Dijkstra on October 15 2004 07:17 EDT
- page refreshment minute wise! by pratap sinha on October 15 2004 06:45 EDT
-
page refreshment minute wise![ Go to top ]
- Posted by: stephen smithstone
- Posted on: October 15 2004 06:15 EDT
- in response to pratap sinha
use the
<meta http-equiv="Refresh" content="60; <your_url>">
the timer i think until the next refresh will only start once the page has finished rendering -
page refreshment minute wise![ Go to top ]
- Posted by: pratap sinha
- Posted on: October 15 2004 06:45 EDT
- in response to stephen smithstone
Thanks stephen.That I know how to refresh the page in JSP.My question was about how to model that logic so that the page will be refreshed and relevant data will be fetched again from the database.
I am concerned about the performance of the process when this will be coded.
I m still in design phase
-pratap -
page refreshment minute wise![ Go to top ]
- Posted by: Barre Dijkstra
- Posted on: October 15 2004 07:17 EDT
- in response to pratap sinha
Thanks stephen.That I know how to refresh the page in JSP.My question was about how to model that logic so that the page will be refreshed and relevant data will be fetched again from the database.I am concerned about the performance of the process when this will be coded.I m still in design phase-pratap
Data caching is key in these kind of situations. -
page refreshment minute wise![ Go to top ]
- Posted by: pratap sinha
- Posted on: October 15 2004 09:44 EDT
- in response to Barre Dijkstra
But how can I acheive this