RE: Caching Framework

2004-08-16 Thread sridhar ramalingam
Framework That's really a great idea Erik. Can you please point me to some example. Thanks Erik, Regds Ravi -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 7:21 PM To: Struts Users Mailing List Subject: Re: Caching Framework Ravi, wi

RE: Caching Framework

2004-08-13 Thread ravi.vedala
Thanks a ton Erik. Regds Ravi -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 7:41 PM To: Struts Users Mailing List Subject: Re: Caching Framework // your PlugIn implementation public class SimpleCache implements

RE: Caching Framework

2004-08-13 Thread Richard Cave
getter and setter methods to access the parameter. Hope this helps. Richard -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 13 August 2004 15:29 To: [EMAIL PROTECTED] Subject: RE: Caching Framework As I am very new to struts, it would be very helpful if you can

Re: Caching Framework

2004-08-13 Thread Vic Cekvenich
In Struts, a layered framework, caching data should happen in the data layer. iBatis, Hibrenate, and other DAO's all do caching automaticaly and configureable of data, such as drop down selects, etc. Caching data in View layer is not Strut-y. .V [EMAIL PROTECTED] wrote: Hi, Is there any Caching

RE: Caching Framework

2004-08-13 Thread ravi.vedala
ubject: RE: Caching Framework Ravi, We've just implemented a master data load using the same technique as Eric. Appears to be working very well. Richard -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 13 August 2004 14:54 To: [EMAIL PROTECTED] Subje

Re: Caching Framework

2004-08-13 Thread kcitron
Use OSCache - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Caching Framework

2004-08-13 Thread Erik Weber
wrote: That's really a great idea Erik. Can you please point me to some example. Thanks Erik, Regds Ravi -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 7:21 PM To: Struts Users Mailing List Subject: Re: Caching Framework Ravi,

RE: Caching Framework

2004-08-13 Thread Guillermo Meyer
You could use Providers (http://providers.sourceforge.net) to handle collections of objects, cache them and in addition use these collection to populate select tags, create dependant drop down lists and display labels (descriptions) according to an ID (i.e using tag similar to Struts ) With prov

RE: Caching Framework

2004-08-13 Thread rahul.chaudhary
--- Begin Message --- One option is to use the singleton pattern. It also depends upon what functionality are you looking for e.g. frequency of cache update.. and many more.. -Original Message- From: Ravi Vedala (WT01 - FINANCE BANKING & SERVICES) Sent: Fri 8/13/

RE: Caching Framework

2004-08-13 Thread Richard Cave
Ravi, We've just implemented a master data load using the same technique as Eric. Appears to be working very well. Richard -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 13 August 2004 14:54 To: [EMAIL PROTECTED] Subject: RE: Caching Framework T

RE: Caching Framework

2004-08-13 Thread ravi.vedala
That's really a great idea Erik. Can you please point me to some example. Thanks Erik, Regds Ravi -Original Message- From: Erik Weber [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 7:21 PM To: Struts Users Mailing List Subject: Re: Caching Framework Ravi, without ge

Re: Caching Framework

2004-08-13 Thread Erik Weber
Ravi, without getting real complicated, I use PlugIns to do this! Implement org.apache.struts.action.PlugIn. You only need to write two methods -- init and destroy. In your init method, gather some data store it as application scope attributes (you get a reference to the controller Servlet in th