Tagged Questions
2
votes
2answers
565 views
MongoDB LinQ “Select” method will really retrieve only a subset of fields?
Searching across the internet how to retrieve a subset of fields in MongoDB, using C# official driver (but using LinQ as the base architecture) I found how to do this in MongoDB shell.
// selecting ...
2
votes
2answers
732 views
MongoDB C# cursor performance issue
I installed the lastest MongoDB 64 bit DB and official C# driver as of 13 Marh 2012. I am getting some unexpected performace results with cursors.
The following code will retrieve and loop through ...
0
votes
1answer
486 views
is insert speed of 5000 per second good enough for MongoDB?
My document looks like this-
{ "_id" : ObjectId("4f0565b8440b4b19d407ea29"), "type" : "web",
"when" : ISODate("2012-01-05T08:56:24.134Z"), "user" : "IIUEBSTJ",
"res" : false }
As you ...
3
votes
5answers
935 views
MongoDB slow writes causes socket time out exception
I am having performance issues with MongoDB.
Running on:
MongoDB 2.0.1
Windows 2008 R2
12 GB RAM
2 TB HDD (5400 rpm)
I've written a daemon which removes and inserts records async. Each hour most ...
5
votes
2answers
546 views
MongoDB: Calling Count() vs tracking counts in a collection
I am moving our messaging system to MongoDB and am curious what approach to take with respect to various stats, like number of messages per user etc. In MS SQL database I have a table where I have ...
0
votes
3answers
753 views
MongoDB C# low performance issue
I'm testing MongoDB 1.6.5 speed and C# in win64 machine. I use Yahoo.geoplanet as source to load states, county, towns but i'm not very performant. I have currently more 5 sec to load the US states ...