[00:28:20] <faeronsayn> @joannac, is it better for a string type to be set to an empty string or a null value? Does it make a difference (performance,convention?)
[00:37:15] <renegadeds> Hey all, I'm just wondering, does anyone know why when I install mongoDB 2.6.4 on 64bit windows I get the error: "Key not valid for use in specified state"?
[00:37:25] <renegadeds> I'm running windows 7 64-bit
[10:27:05] <antoinet> Hello, I'm trying to create a text index for a nested data structure and I run into an "Index key pattern too large error" with code 67
[10:44:15] <kali> i'm not sure about text index, but a lot of thing would be easier
[10:45:14] <kali> antoinet: it might be worth adding a "rank" property in your result subdoc, to replace the key. it may make your life easier at later stages
[10:45:57] <kali> antoinet: the thumbrule is, never use a variable value as a key. only name and keywords
[10:46:42] <antoinet> kali: I agree, but I receive this json from an external API
[10:47:30] <kali> antoinet: mongodb will be next to useless if you stick to this schema. everything will be awkward and complicated
[10:49:18] <antoinet> kali: okay, I'll modify it then and introduce the rank, something like that? results: [{"rank" : "1", "domain" : "example1.com", "href" : "http://www.example1.com/"}, … { "rank" : "99", "domain" : "example99.com", "href" : "http://www.example99.com/“}]
[21:34:33] <noir_> hi guys, i'm learning mongodb and i'm trying batch insertions. i've not found so much in the documentation, but i have been suggested not to use the bulk operator. i need to use batch insert to make multiple insert with 1 query
[21:34:39] <noir_> any hint on how to accomplish this?
[21:53:40] <noir_> i have a problem... You only have two data centers available. Which arrangement(s) of servers will allow you to be stay up (as in, still able to elect a primary) in the event of a failure of either data center (but not both at once)?
[22:07:06] <MongoNewb> Hey all, very new to Mongo and had a quick question. I have a database with each entry in a collection being a dictionary of a bunch of pairs, "ID":"weouigfhswduohgwuiohgweuhweru", "name: Jose", etc., how can I search for all entries where name = "jose"?
[22:59:11] <MongoNewb> Ok so now I found all of the collections where name = "name" that I wanted, it has another dictionary within that called statistics_list, how do I pull out the statistics_list from each entry?
[23:30:14] <DrIDK> hello, how can serialize BSON to real JSON. I mean, have "id" key instead "_id". Same question for date and other format supported by bson