I'm working on an object oriented application that was originally developed to load numerous objects (mostly database related objects) for every page access. The scripts take about 345 ms to complete, which is pretty long considering it will have multiple simultaneous users. Is there a product that will cache class instances (ie, create them by reference =& and access them by reference later).
Edited: Actually, forget the reference thing as that doesn't make sense, but just caching the class files in memory so they don't need to be read from disk each time.