I am using node.js with express and connect-mongo as session store. When I am checking my sessions collection in mongo, there is only the _id attribute a session attribute in each dataset. The value of the session attribute is a String. Is there any way to store the session data as BSON?
|
feedback
|
|
Maybe I don't understand your question directly but MongoDB already stores everything using BSON. So if you even store it your Session collection as it is, it will get converted into a JSON string. reference: http://www.mongodb.org/display/DOCS/Inserting EDIT: Also take a look at this > Mongo JSON document -> JSON -> BSON This may help in your specific scenario. | |||
feedback
|
|
That is simply the way this particular middleware was written to work (though who knows why it was done that way). It converts your session object into a json string when it saves it to mongodb, and converts it back into an object when it's read again. I suggest switching to the alternative connect-mongodb middleware if you want session objects stored as the same object in mongodb. The connection for connect-mongodb is a bit different from connect-mongo, but once you have the connection set up, the rest of the api is the same so your existing code should just work. | |||
|
feedback
|
"JSON object"has really taken off. It may become one of those misnomers likeXMLHttpRequestwhich has nothing to do with XML. – Anurag Apr 19 '11 at 23:52