-- Laurent TAUPIAC <[EMAIL PROTECTED]> wrote (on Friday, 29 June 2007, 02:35 PM +0200): > > To expand on what Bill mentioned previously, the combination of > Zend_Config + Zend_Cache + Zend_Registry would accomplish the same > functionality: > > * Zend_Config for the actual variable storage. > * Zend_Cache for caching to disk (or database) between requests > * Zend_Registry to make it globally available in the application > > Basically, everything you need is already present. > > Imho, database is the best way to manage easily race condition. Disk storage > will lead to problems, especially if you have many fronts.
Zend_Cache can use either memcached or Zend Platform for backends, and you can also write your own backend. The benefit to a setup like this is that the developer can test locally using filesystem or sqlite, and then push live without changing any code but the backend used. -- Matthew Weier O'Phinney PHP Developer | [EMAIL PROTECTED] Zend - The PHP Company | http://www.zend.com/
