Re: data caching in web application

2004-11-30 Thread Mark Benussi
--Original Message Follows From: Vic <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: data caching in web application Date: Tue, 30 Nov 2004 03:01:51 -0800 A more MVC approach is to do DATA chacing in the DATA

Re: data caching in web application

2004-11-30 Thread Vic
our webapp will be enabled hope this helps Alexander -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Monday, November 29, 2004 9:54 PM To: [EMAIL PROTECTED] Subject: data caching in web application Hi I have a table in DB2 on AS400 which has about 1 records,

RE: data caching in web application

2004-11-30 Thread Jesse Alexander (KBSA 21)
To: [EMAIL PROTECTED] Subject: data caching in web application Hi I have a table in DB2 on AS400 which has about 1 records, i want to cache this data to improve my web application performance, I dont want to cache it in session, I was thinking of loading the data in array or some class and load it

Re: data caching in web application

2004-11-29 Thread Jeff_Caswell
cc: Subject: data caching in web application 11/29/2004 02:53

data caching in web application

2004-11-29 Thread Ashish Kulkarni
Hi I have a table in DB2 on AS400 which has about 1 records, i want to cache this data to improve my web application performance, I dont want to cache it in session, I was thinking of loading the data in array or some class and load it in servlet context, what is the best way to do it? is the