> I think out of sheer laziness and excitement to get up and running I > defined a few lists in my controller's global namespace to which I > append data used by other controllers during other calls. The lists > seem to persist between calls which is great,
This will work when you're running in development mode (at which time your app is running in a single process http server - I don't know if multiple threads are used) but will not work if your app is deployed in a multiprocess environment - like mod_python in apache or scgi, fastcgi, etc... So while your approach is cool for quick tests while developing, it's not suitable for real-world applications. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears -~----------~----~----~----~------~----~------~--~---

