Caching Design

J

Jim Douglas

My setup is web application, middle tier for business logic and data access.
I have static data cached on the GUI and in the middle tier. The stuff
cached in the web application is to populate dropdownlists, etc. The data
cached in the middle tier is larger, company locations, etc.

Should I cache everything in the middle tier so that it's in one place? I
realize that the front end would then have to go across the wire to get the
cached data but is it worth it? What are you guys/gals doing?


Thanks!

Jim Douglas
 
G

Guest

No u dont need to move the caching stuff to one place.There will be something
which needs to be cached at the UI level and something which needs to be
cached at the business level.Take for example,if you have some static html or
static content that will be displayed throughout u can cache this at the UI
level.At business level,u can cache the things which is frequently accessed
from database.business level is the best place for it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top