On Aug 9, 2005, at 6:20 PM, [EMAIL PROTECTED] wrote: > BTW, there has been so much talk of the speed improvements with zend > that I'm wondering how you were able to benchmark it and if you have > the tests or procedures laying around and could share them with us.
I would be interested in this as well. The compile cache (APC for 4.3, 4.4 and 5.1.x) will give you a much greater performance improvement and load reduction over both the optimizer and the encoder. With a compile cache the first request does the compile stage and saves the results in shared memory. All of the next requests skip the compile stage and execute already allocated opcodes from shared memory. Using the encoder will be faster than compiling the code, but slower than the compile cache because it has to parse the binary file and allocate the opcode memory on every request. It would be nice if Zend optimizer played nice with APC, but Zend wants to sell their own compile cache so it only plays nice with their stuff. Also are there any plans to test with 5.1.0 beta 3 or the soon to be released 5.1.0 RC1? Brian _______________________________________________ domains-gen mailing list [email protected] http://discuss.tucows.com/mailman/listinfo/domains-gen
