among Python web frameworks there are only two that I have full trust in when it comes to performance. 1) TurboGears. 2) Pyramid.
last year, i have written a statistics application (a chartbeat like app) in Pyramid. i have used only 1 machine that had 4 (or 8, don't remember the exact count) cores and 16 gb ram. with apache & mod_wsgi i could handle ~40K reqs/sec. with nginx & uwsgi i could handle 50K-55K reqs/sec. since that day i always deploy my applications with nginx & uwsgi. :) let's talk about a portal. a portal is read-heavy application. you can have a simple replication, one master one slave. you can put redis in front of the database so the reads are faster or you can just use varnish to cache the pages. other than that it's your server's or servers' capabilities. On Jun 6, 7:10 am, "Biswas, Pinakee" <[email protected]> wrote: > Hi, > > As mentioned earlier, we are planning to use Pylons/Pyramid for our > platform. > > Could you please let me know if there is any performance statistics > available for Pylons/Pyramid? > > Is there any major portal with high traffic that is based on Pylons/Pyramid? > I know one major Portal (with almost 12000 views per sec and few petabytes > of monthly bandwidth usage) uses Python but not sure if it uses any web > framework. > > Looking forward to your response. > > Thanks, > > Pinakee Biswas > > Director & CTO > > Description: Description: vvidialogo.jpg > > Just watch it ! > > yGSM Mobile (Voice & Data): +91-982-016-7979 > > (Tel: +91-22-26733737 I (Fax:+91-22-26732828 > > 7E- Mail: <mailto:[email protected]> [email protected] I 8Web: > <http://www.vvidiacom.com/>http://www.vvidiacom.com > > P Please don't print this e-mail unless you really need to, this will > preserve trees on planet earth. > > ----------------------------Disclaimer------------------------------------- - > --------------------------------------------------------------------------- - > --------------------------------------------------------------------------- - > --------- > > The information contained in this message (including any attachments) is > confidential and may be privileged. If you have received it by mistake > please notify the sender by return e-mail and permanently delete this > message and any attachments from your system. Please note that e-mails are > susceptible to change and malwares. VVIDIA COMMUNICATIONS PVT LTD. > (including its group companies) shall not be liable for the improper or > incomplete transmission of the information contained in this communication > nor for any delay in its receipt or damage to your system. > > --------------------------------------------------------------------------- - > ---------------------------------------------Disclaimer-------------------- - > --------------------------------------------------------------------------- - > --------- > > image001.jpg > 2KViewDownload > > image002.png > < 1KViewDownload -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
