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?

link|improve this question

1  
Wow, the term "JSON object" has really taken off. It may become one of those misnomers like XMLHttpRequest which has nothing to do with XML. – Anurag Apr 19 '11 at 23:52
@Matt Why isn't this JSON? I can't see the connection to your article, as MongoDB's data storage is made for JSON, and therefor the object used in node.js shouldn't be stringified. Actually, that's exactly the point of my question. – Thomas Apr 19 '11 at 23:58
You used the term "JSON object." JSON is a string format. – Matt Ball Apr 19 '11 at 23:59
I changed it to the MongoDB specific term BSON. – Thomas Apr 20 '11 at 0:03
feedback

2 Answers

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.

link|improve this answer
I think this is a node.js specific problem, as i thought the mongodb-connect session handler would already manage it like that. – Thomas Apr 20 '11 at 20:40
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.