I understand how Zend cache works, what I am suggesting is the addition
of Zend Cache to the Controller/Dispatcher so the first request it sits
there and figures out what class to load, checkes the file exists, the
class exists then runs the controller class.
The second load all these checks would be cached and things would be a
lot faster, but the generation of views and such would still be dynamic.
Richard Thomas - Code Monkey
Zend Certified Engineer
Cyberlot Technologies Group Inc.
507.398.4124 - Voice
Fabien MARTY wrote:
Hi Richard,
2006/11/25, Richard Thomas <[EMAIL PROTECTED]>:
A lot of my applications are so dynamic that I have to do caching at a
block level not a page level, now looking at
http://zend.cyberlot.net/
We see a majority of time is handling dispatch, Would it be feasible to
add a caching layer into the controller so it could "remember" how to
handle requests.
It's already possible to do that with Zend_Cache (with a specific
option of Page frontend).
Have a look at the last example of this page :
http://framework.zend.com/manual/en/zend.cache.frontends.html#zend.cache.frontends.page
Regards