node-mongolian icon indicating copy to clipboard operation
node-mongolian copied to clipboard

[project inactive] Mongolian DeadBeef is an awesome Mongo DB driver for node.js

Results 24 node-mongolian issues
Sort by recently updated
recently updated
newest added

Anyone have any recommendations for a connect session store? There are only two projects _(https://github.com/xcoderzach/connect-mongolian)_ i've seen, both have no activity in nearly a year.. This may not be bad,...

In conjunction with GH-13, it would be useful to support eventually consistent reads off of slave servers. See: http://www.mongodb.org/display/DOCS/Connecting+Drivers+to+Replica+Sets

Can't close connection right after opening it tried both `db.server.close()` and `server.close()` ``` var Mongolian = require("mongolian"); var server = new Mongolian; var db = server.db("database"); var shops = db.collection("collection");...

I noticed that when passing an object to insert, the _id property is added to the original object via reference. Is this intentional? It seems slightly strange and I've been...

On attempt to insert object after a period of time collection is not used, I experience failure with the error above. It looks that mongolian keeps TCP connection to the...

For some time we have noticed that our test suite we are running takes like 19x longer to run on linux systems and the bottleneck seems to be in Mongolian...

In debugging both Mongolian and apps using it, it would be useful to see the commands being sent to the server and replies received. I'm not sure if this makes...

Im trying Master/Slave replication for something. My goal is to use the slave only for mapreduce tasks, get the results inline and then store it into the master. My full...

In the mongo shell, `db.collection.find()` returns all documents, however, in mongolian, the same command will return a cursor. What's with the discrepancy? Shouldn't just running `db.collection.find(query, callback)` give you all...

For MongolianDB.prototype.eval it would be nice to have a way to specify nolock , and have the default be nolock = true since it's rare you would actually want it...