`session` is a per-request attribute of the `request` object, which is tied 
to the ISession interface.

you should be running pyramid_beaker , which attaches a Beaker object onto 
the request.session interface behind the scenes.  You'll be able to 
configure it to use the datastore of your choice in your .ini file.

when using pyramid_beaker , the middleware sets & interprets a cookie value 
to persist the session.  that cookie value is either an identifier for 
server-based session ( memcached, dbm, etc ) or a client-side session ( 
which is either an encrypted or signed cookie, I can't remember )

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pylons-discuss.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to