Why are CherryPy object attributes persistent between requests?

前端 未结 2 745
滥情空心
滥情空心 2021-01-03 08:25

I was writing debugging methods for my CherryPy application. The code in question was (very) basically equivalent to this:

import cherrypy

class Page:
    d         


        
相关标签:
2条回答
  • 2021-01-03 08:38

    synthesizerpatel's analysis is correct, but if you really want to store some data per request, then store it as an attribute on cherrypy.request, not in the session. The cherrypy.request and .response objects are new for each request, so there's no fear that any of their attributes will persist across requests. That is the canonical way to do it. Just make sure you're not overwriting any of cherrypy's internal attributes! cherrypy.request.body, for example, is already reserved for handing you, say, a POSTed JSON request body.

    For all the details of exactly how the scoping works, the best source is the source code.

    0 讨论(0)
  • 2021-01-03 08:40

    You hit the nail on the head with the observation that you're getting the same data from self.body because it's the same in memory of the Python process running CherryPy.

    self.debug maintains 'state' for this reason, it's an attribute of the running server.

    To set data for the current session, use cherrypy.session['fieldname'] = 'fieldvalue', to get data use cherrypy.session.get('fieldname').

    You (the programmer) do not need to know the session ID, cherrypy.session handles that for you -- the session ID is automatically generated on the fly by cherrypy and is persisted by exchanging a cookie between the browser and server on subsequent query/response interactions.

    If you don't specify a storage_type for cherrypy.session in your config, it'll be stored in memory (accessible to the server and you), but you can also store the session files on disk if you wish which might be a handy way for you to debug without having to write a bunch of code to dig out session IDs or key/pair values from the running server.

    For more info check out http://www.cherrypy.org/wiki/CherryPySessions

    0 讨论(0)
提交回复
热议问题