Hi, ~flow wrote: > * werkzeug uses greenlets* to do thread-local variables. i understand > very little about the requirements when serving under mod_python/ > mod_wsgi, but it somehow scares me that i have to use a less-than > universally accepted C extension that doesn't compile under windows > for a central system component. what are the alternatives here? > ----------------- > *http://codespeak.net/py/dist/greenlet.html Werkzeug doesn't require greenlet, it supports them. If you're not using them neither will werkzeug do anything with them. Threading is handled by the WSGI gateway and beyond the scope of Werkzeug. The only thing where we come in contact with threads is the optional context locals as you pointed out.
> * the documentation of werkzeug is well written, but there is not very > much of it. googling for independent writeups does not yield much > either. It's a young project and we're not trying to push Werkzeug to anyone nor do we advertise it in any way currently. The current werkzeug users spotted it by reading about it via the few posts in my blog or via the cheeseshop I suppose. (Or via the IRC Channel obviously). > * where is the community? there is pocoo-libs but it only has 33 > members as of now and 14 discussion topics. The main contact point is the #pocoo IRC channel on irc.freenode.net. The mailinglist is pretty new and intended as fallback for the case nobody is answering in IRC. Regards, Armin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pocoo-libs" 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/pocoo-libs?hl=en -~----------~----~----~----~------~----~------~--~---
