Hi I'm using pyramid_beaker to store sessions on server with these options: session.type = file session.data_dir = %(here)s/beaker/sessions/data session.lock_dir = %(here)s/beaker/sessions/lock session.key = mykey session.secret = mysecret session.cookie_on_exception = true session.cookie_expires = 3600
I did some tests and i got that beaker sets a cookie on client side with 'mykey' value which will be used to restore the same session on each request until the session/cookie expires. so am i right? Anyway if i have another session key how can i read some values from that session? On the server side how can i manage those sessions? i mean are those session files just python pickles? Thanks in advance. -- 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/d/optout.
