RE: how to cache lists?

2001-04-20 Thread Flying Cloud
Have you looked at the Expresso caching at www.jcorporate.com ? Sandra

how to cache lists?

2001-04-17 Thread Alex Colic
Hi, Lets say you have a web app that runs over a number of web pages in a wizard fashion. On each one of these pages you need to present the user with a select box holding lists. e.g. locations, cities, etc. This data is read from a database and rarely changes. How would you cache these lists

Re: how to cache lists?

2001-04-17 Thread Paul Tindall
ot; [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 8:34 AM Subject: RE: how to cache lists? Alex, It is a good idea from a developers point of view. But when U say this to an IT manager and also tell him that U have to restart the webserver when ever new data is add

Re: how to cache lists?

2001-04-17 Thread Chris Butler
At 09:15 AM 4/17/2001 -0400, Alex Colic wrote: Lets say you have a web app that runs over a number of web pages in a wizard fashion. On each one of these pages you need to present the user with a select box holding lists. e.g. locations, cities, etc. This data is read from a database and rarely

RE: how to cache lists?

2001-04-17 Thread Greg Reddin
: RE: how to cache lists? Alex, It is a good idea from a developers point of view. But when U say this to an IT manager and also tell him that U have to restart the webserver when ever new data is added, he/she will not allow U to do that. I faced the same situation but gave up on the idea

RE: how to cache lists?

2001-04-17 Thread Greg Reddin
The above approach is fine if you want to have cache within a single application. If you want to have the same cached data accessible to different web applications, you can use a Startup class like what Weblogic provides. You can have your cached data as instance variables of your startup

RE: how to cache lists?

2001-04-17 Thread Nanduri, Amarnath
Message- From: Greg Reddin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 17, 2001 9:46 AM To: [EMAIL PROTECTED] Subject: RE: how to cache lists? You could store the data in Application context as you've stated, but provide a mechanism for that data to be refreshed (either automatically

RE: how to cache lists?

2001-04-17 Thread Menno M Jansz
lto:[EMAIL PROTECTED]] Sent: Tuesday, April 17, 2001 9:46 AM To: [EMAIL PROTECTED] Subject: RE: how to cache lists? You could store the data in Application context as you've stated, but provide a mechanism for that data to be refreshed (either automatically or manually) without restarting the