Joe Kramer wrote: > I have from ten to hundred concurrent users. I can't let Zend_Locale > load and parse xml file on every request.
Out of interest, have you profiled and determined that loading Zend_Locale each request is a significant bottleneck in your application? If so, can't you just use Zend_Cache to store the (serialized) object instance? Then you'd just have the cost of an unserialize(). Personally, I'd be amazed if Zend_Locale is your bottleneck as the database calls are always where my bottlenecks are. Regards, Rob...
