Hi guys,
is there a way for zend_pdf to use a cache file backend? i generate a lot of
pdf files (12.000 +) and my memory is sometimes exhausted (memory_limit set
on 128M)...
I use now the following code:
<?php
$backendOptions = array('cache_dir' => '/temp/');
$memoryManager = Zend_Memory::factory('File', $backendOptions);
Zend_Pdf::setMemoryManager($memoryManager);
?>
but this doesn't seems to work... Anyone an idea on how to make this work?
ps. After each loop i unset the variables...
--
View this message in context:
http://www.nabble.com/zend_pdf-memorymanager-tp22662265p22662265.html
Sent from the Zend Framework mailing list archive at Nabble.com.