This post originated from an RSS feed registered with Python Buzz
by Aaron Brady.
Original Post: Threads & Events
Feed Title: insom.me.uk
Feed URL: http://feeds2.feedburner.com/insommeuk
Feed Description: Posts related to using Python. Some tricks and tips, observations, hacks, and the Brand New Things.
I'm beginning to think that there is no framework in Python that suits me,
so I'm doomed to write my own. Badly.
I had a brief affair with Medusa, with it's Chain-of-Responsability style
selection, stackable handlers, and snappy response. Then I tried to do any
non-trivial processing. Oops. I could, as Georg has, use thread queues, but
that sounds like hackery to me.
I'm currently implementing an application using (wait for it) CGI. It
works out of the box, I don't have to lock resources, and while
it performs poorly, it's better than you might think.
I've encapsulated things in a 'Context' object that I pass around, and I
use one CGI to route things to handlers via C-o-R. When I deploy it, if
the load is great enough, I can write a shim to replace CGI with mod_scgi
or mod_python or even Medusa if I decide to work around the event driven
model.