I\'m trying to use $push in an update query in mongodb, with the c# driver. The Update.Push(...) method requires a string name (that\'s fine), and a BsonValue to be \'pushed\'.This is where I run int
We started to use MongoDB at work. So far so good however I was asked to assess if MongoDB could do Replica Set and Sharding at the same time. After searching for a while I find out that yes it can bu
I have the following collection for a user in a MongoDB: { \"_id\" : 1, \"facebook_id\" : XX, \"name\": \"John Doe\",
Let us say we have the next JSON structure: { { name:\"FirstComponent\", items:[ { Caption:\"Item1\", Value:\"1\"
I know this is subjective, but how good is the norm serializer, particularly related to serialization of complex objects that are cyclic. Essentially I have big chu开发者_如何学编程nk of deserialized
The database is near 5GB. I have documents like: { _id: .. user: \"a\" hobbies: [{ _id: .. name: football 开发者_高级运维 },
Mongo version 1.8.2. Assume I have a class like public class Acc { public int _id { get; set; } public int? Foo { get; set; }
I got a problem in C# class design for mongodb, suppose there two class: public class Group { public Group()
I\'m using the latest versions of MongoDB (on a Win 64 Server) and the C# driver. I have a windows service that is doing 800 reads and updates per minute, and after a few minutes the current threads u
I have a table in Mongo. O开发者_StackOverflow社区ne of the fields is a DateTime. I would like to be able to get all of the records that are only for a single day (i.e. 9/3/2011).