Pagecache framework?

2005-01-09 Thread Mieke Banderas
What should I look for if I want a simplistic system for avoiding trips to the DB for pages that are only built upon and between changes are 100% similar? Is there a cache framework I should look into or could I use something even simpler? After all, most pages only occasionally have true dynamic

Re: Pagecache framework?

2005-01-09 Thread QM
On Tue, Jun 07, 2005 at 08:12:13PM +0200, Mieke Banderas wrote: : What should I look for if I want a simplistic system for avoiding trips : to the DB for pages that are only built upon and between changes are 100% : similar? Is there a cache framework I should look into or could I use : something

Re: Pagecache framework?

2005-01-09 Thread Parsons Technical Services
One other aspect to think about that will help, is to consider the cause of the dynamic. If the difference in the page is due to the client then that page would need to be current data. But if the dynamic nature if from an outside change and the client has no affect on the content, then the

RE: Pagecache framework?

2005-01-09 Thread Mike Curwen
from the makers of webwork: http://www.opensymphony.com/oscache/ Mike Curwen Product Manager Globally Boundless -Original Message- From: Mieke Banderas [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 07, 2005 1:12 PM To: Tomcat Users List Subject: Pagecache framework? What

Tomcat and Eclipse IDE

2005-01-09 Thread Nic Werner
I'm using the Eclipse IDE with the Web Tools Platform. It is running my version of Tomcat 5, but I can't find any documentation on how it is running? I want to use Tomcat for authentication, and certain things need to be set in the right context in server.xml, but I can't figure out how the

Re: Tomcat and Eclipse IDE

2005-01-09 Thread Benoit - Althosting.fr
What is your system and configuration ? Ben - Original Message - From: Nic Werner [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: Sunday, January 09, 2005 10:23 PM Subject: Tomcat and Eclipse IDE I'm using the Eclipse IDE with the Web Tools Platform. It is running my version

Re: Chirag: Logout from the JDBCRealm Authentication

2005-01-09 Thread Parsons Technical Services
Looking into the Authenticatorbase.java and the register method of 5.0.19, it looks like you could do session.removeNote(Constants.SESS_USERNAME_NOTE); session.removeNote(Constants.SESS_PASSWORD_NOTE); You may need to do this as well: session.setAuthType(null); session.setPrincipal(null); Two

Re: Tomcat and Eclipse IDE solved

2005-01-09 Thread Nic Werner
Windows XP, Eclipse 3.1, Web Platform Tools 1.0M2, Tomcat v5.5. Web Platform Tools is just that - it allows you you Eclipse for java web development. Inside it, I select a server, and show it the location. All my console output, browser is inside Eclipse. Actually, I did find the solution,

Re: Pagecache framework?

2005-01-09 Thread Vic
Mostly you want to cache Data in the Data layer. I use iBatis for DAO, and it; like most DAO has caching. .V Mieke Banderas wrote: What should I look for if I want a simplistic system for avoiding trips to the DB for pages that are only built upon and between changes are 100% similar? Is there a

Re: Chirag: Logout from the JDBCRealm Authentication

2005-01-09 Thread Chirag
But here again there is a problem The session to which you are refererring to is org.apache.catalina.Session Interface While the session with which we get by referring by an implicit object 'session' is javax.servlet.http.HttpSession Interface And so method which you are conveying such as

jk2 connector question

2005-01-09 Thread jeff.fong
Hi, I have configured the jk connector and it works with apache 2.0.52 and tomcat 5.0.28. Apache host is: 192.168.1.1 The tomcat project can be accessd thro' http://192.168.1.100:8080/myProject After using the jk connector, the tomcat project can also be reached by

Re: jk2 connector question

2005-01-09 Thread Mladen Turk
jeff.fong wrote: Hi, I have configured the jk connector and it works with apache 2.0.52 and tomcat 5.0.28. Apache host is: 192.168.1.1 The tomcat project can be accessd thro' http://192.168.1.100:8080/myProject After using the jk connector, the tomcat project can also be reached by