One of the things that we currently do not take advantage of is object level caching. Hibernate makes it pretty easy to add an L2 cache on a class by class basis, so I'd like to start by adding an L2 cache for a handful of classes like ... RollerPropertyData, WebsiteData, and UserData. All three of those classes are highly used and seldomly changed, so they are ideal for caching.
We can play with a variety of possible cache implementations, but EhCache is the default and seems easiest to use at this point. Would anyone object to this? -- Allen
