In my node.js app I am using expressJS and connect-mongodb for the session store. I have set connect-mongodb to point to me local my local MongoDB (e.g. mongoStore(mongodb://localhost/myAppDB')
All my user authentication works as expected, but I am not seeing a sessions collection in my mongodb. For example when I run the following in the terminal:
$ mongo myAppDB
> show collections
I see all my other collection, but no sessions.
Should I be able to see them this way?
I just want to be able to access my session from the connect.sid, but since mongoStore has no 'get' method, so I am trying to pull the session directly from the database
sessionscollection. are you sure that you did setup the session-store right? – pkyeck Oct 18 '11 at 7:58