Archive for October, 2009
Amazing 1,000,000 frames per second bullet video
Posted in Engineering, Interesting, Uncategorized, tagged high speed camera, bullet on October 12, 2009 | Leave a Comment »
Python 3.1 and mod_wsgi performance notes
Posted in AppCove, Engineering, Linux, reSearch, tagged Apache, mod_wsgi, Performance, Python, python 3 on October 11, 2009 | Leave a Comment »
We’re researching the use of Python and mod_wsgi running under apache for developing some extensive web applications. Here are some notes on a performance test that we recently ran.
==================================================================
Server:
x86_64
Python 3.1.1
mod_wsgi 3.0c5
apache 2.2
RHEL 5.3
quad core xenon
8 GB ram
Development system – not in production use.
==================================================================
Application:
1 import time
2
3 def application(environ, start_response):
4 status = ‘200 OK’
5
6 [...]