On 5 Nov, 04:09 am, [email protected] wrote: >After restart twisted.web.server.Site all sessions lost, how it >restore?
Twisted Web doesn't support persistent sessions out of the box. You could try to implement them by overriding the session storage implementation on the Site object. See `Site.makeSession`, `Site.getSession`, and the `Site.sessions` dictionary. Jean-Paul _______________________________________________ Twisted-web mailing list [email protected] http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-web
