[fw-general] Question about Zend_Cache

2008-10-07 Thread S. Alexandre M. Lemaire
Hi Everyone, Taking a peek at Zend Cache, seems like a useful mechanism. I have a question about the scope of duration though. If I do this: ** $cache1 = Zend_Cache::factory( 'Core', 'File', array(

RE: [fw-general] Why Dojo of All???

2008-09-16 Thread S. Alexandre M. Lemaire
When we last used Dojo, it would load things 'on demand'; meaning that if you were to request a certain dojo.* package during usage, it would dynamically load the package into the mix. The result was a LARGE number of IO calls solely for loading, this caused great startup delays, and very a high a

[fw-general] Zend_Mail + reading inboxes - get raw message source?

2008-08-13 Thread S. Alexandre M. Lemaire
Hi ZFers, Am trying to get raw message source with Zend_Mail's read mechanisms: $mbox = Zend_Mail_Storage_Pop3( $config ); $num = $mbox->countMessages(); for( $n = 1 ; $n <= $num ; n++ ){ $message = $mbox->getMessage( $n ); $message_source = ??? ($mbox->getRawContent( $n );) ???