Re: Django Performance using PyISAPIe on IIS Rocks

2008-05-13 Thread Wes Winham
It's also worth noting that you sometimes lose stability using eAccelerator. I've experienced a notable number of apache segfaults trying to squeeze out some performance, where as .pyc comes out of the box with no instability. -Wes On May 12, 10:30 am, rcs_comp <[EMAIL PROTECTED]> wrote: > Mat,

Re: Django Performance using PyISAPIe on IIS Rocks

2008-05-12 Thread rcs_comp
Mat, You are right, I should have done that. I setup eAccelerator for IIS in both FastCGI and ISAPI modes. Unfortunately, I could not get eAccelerator working in non-thread-safe mode with FastCGI (which is what Microsoft recommends). Here are my results: PHP ISAPI eAccelerator Symfony: 25.06

RE: Django Performance using PyISAPIe on IIS Rocks

2008-05-12 Thread Mat
Dunno if you can do it on IIS (cant say ive ever tried), but try installing a PHP accelerator such as eaccelarator or APC, both are open source. This will cache your php files similar to *.pyc in python, and should give you a x8-x10 boost. It is not really a fair test without it :) It is how we ru