I have a web app which currently runs off Python's BaseHTTPServer. I want to deploy it under Django instead.
It contains a Python object (the state of play of a board game) which lives in the process running the server. If I deploy under Django I'll need some way of keeping the object around between invocations. The object is expensive to construct, so I don't want to serialize and deserialize for each HTTP request. What do you suggest for this? Tom --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" 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/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

