On Fri, 2009-04-17 at 03:02 -0700, forrest yang wrote:
> session would be created esaily, but could django create some
> application variable like asp.net , or provide some special function
> for the different period of server, on_server_start()
> on_application_start() or something like that?

Those concepts ("application start", etc) are not well-defined many
webserver-based programs. The point being that robust design here is to
revolve around "shared nothing" as much as possible because the
lifecycle of different processes or threads in the web server is not
tied to anything in particular. There are multiple children responding
to incoming requests, each running a copy of the code (possibly a shared
copy, but still each not tied to the others) and stopping and starting
at different times.

There is not "server start" or "application start" moment. What you are
asking for requires tying all of the different request/response threads
together into a single big ball of string and isn't particularly good
design.

Now, if you have a concrete problem you're trying to solve, best to ask
about that (in a new thread with an appropriate title) and we can
discuss solutions to that, rather than trying to emulate a fairly
non-specific feature of a different framework based on an entirely
different design and set of principles.

Regards,
Malcolm


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to