Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
4answers
7k views

Protocol Buffers versus JSON or BSON

Does anyone have any information on the performance characteristics of Protocol Buffers versus BSON (binary JSON) or versus JSON in general? Wire size Serialization speed Deserialization speed ...
19
votes
2answers
6k views

Understanding MongoDB BSON Document size limit

From MongoDB The Definitive Guide: Documents larger than 4MB (when converted to BSON) cannot be saved to the database. This is a somewhat arbitrary limit (and may be raised in the future); it ...
13
votes
1answer
3k views

Performant Entity Serialization: BSON vs MessagePack (vs JSON)

Recently I've found MessagePack an alternative binary serialization format to Google's Protocol Buffers and JSON which also outperforms both. Also there's the BSON serialization format that is used ...
10
votes
3answers
801 views

Why is it called BSON?

So BSON is JSON serialized right? {"hello": "world"} → "\x16\x00\x00\x00\x02hello\x00 \x06\x00\x00\x00world\x00\x00" But why is it called Binary Json? What does binary stands for? I always ...
5
votes
1answer
68 views

Can MongoDB and its drivers preserve the ordering of document elements

I am considering using MongoDB to store documents that include a list of key/value pairs. The safe but ugly and bloated way to store this is as [ ['k1' : 'v1'] , ['k2' : 'v2'], ...] But document ...
5
votes
2answers
317 views

Bson library for Delphi?

Can someone suggest a complete Bson library for Delphi ? I'm trying to use http://code.google.com/p/pebongo/source/browse/trunk/_bson.pas from http://bsonspec.org, but there are some structures that ...
4
votes
1answer
72 views

binary-to-text encoding, non-printing characters, protocol buffers, mongodb and bson

I have a candidate key (mongodb candidate key, __id) thats looks like the following in protocol buffers : message qrs_signature { required uint32 region_id = 1; repeated fixed32 urls = 2; }; ...
4
votes
1answer
423 views

Facebook user_id as MongoDB BSON ObjectId?

I'm rebuilding Lovers on Facebook with Sinatra & Redis. I like Redis because it doesn't have the long (12-byte) BSON ObjectIds and I am storing sets of Facebook user_ids for each user. The sets ...
4
votes
4answers
2k views

BSON library for java?

We have good support for JSON in java http://blog.locut.us/main/2009/10/14/which-is-the-best-java-json-library.html but what about BSON. What library do you know that provides BSON support for java? ...
3
votes
1answer
83 views

Unsupported type UString using Aeson with MongoDB BSON

I am attempting to use Data.Aeson.TH deriveJSON to generate the ToJSON and FromJSON instances for MongoDB Data.Bson. At the moment I am using: $(deriveJSON id ''Data.Bson.Field) $(deriveJSON id ...
3
votes
2answers
622 views

Fastest possible Javascript object serialization with Google V8

I need to serialize moderately complex objects with 1-100's of mixed type properties. JSON was used originally, then I switched to BSON which is marginally faster. Encoding 10000 sample objects ...
3
votes
1answer
1k views

String not valid UTF-8 (BSON::InvalidStringEncoding) when saving a UTF8 compatible string to MongoDB through Mongoid ORM

I am importing data from a MySQL table into MongoDB using Mongoid for my ORM. I am getting an error when trying to save an email address as a string. The error is: ...
3
votes
3answers
1k views

Creating BSON object from JSON string

I have Java app that takes data from external app. Incoming JSONs are in Strings. I would like to parse that Strings and create BSON objects. Unfortunate I can't find API for that in Java's BSON ...
2
votes
1answer
31 views

BSON::ObjectId vs Mongo::ObjectID

In online API they are referring to Mongo::ObjectID. I have require 'mongo' but still ruby fails to find it. For instance, I need to find an object by its Id and I'm doing: ...
2
votes
1answer
153 views

Is a binary JSON javascript library available for browsers?

In order for efficient server side parsing I am looking into a BSON solution directly for the browser javascript environment. The idea is to utilize the entire ASCII space by means of binary ...
2
votes
1answer
307 views

Benchmark: BSON vs JSON

Following this benchmark BSON needs more disk-space, time to create, serialize, deserialize and traverse all elements. The big advantage of BSON is, that it's much faster in traversing. So what's ...
2
votes
2answers
173 views

Storing composite/nested object graph

I am currently developing a document store in Mongo DB which contains a complete material breakdown of a specific item. The breakdown is calculated and contains a composite structure. The domain ...
2
votes
2answers
902 views

Nodejs - how compile bson parser?

Every time I try to do anything in Nodejs, what is connected with mangodb or sockets, then I receive error: node.js:134 throw e; // process.nextTick error, or 'error' event on first tick ...
2
votes
1answer
757 views

Deserializing MongoDB BSON

I attempting to take a response from a REST service that queries an instance of MongoDB and parse the response into a Java object. The web service returns the response with a MIME type of html with a ...
2
votes
2answers
172 views

Is there a way to generate c# code from serialized object in bson (file on a disk) to

What I have is a serialized object (given to me serialized from another language). I would like to generate c# code for this and use it in JSON.Net or similar. I have just started looking at JSON.Net ...
2
votes
1answer
401 views

mongo bson objectid

curious what the BSON::ObjectId.id.data array represents? for example [77, 145, 20, 13, 225, 96, 124, 5, 31, 0, 0, 1]
2
votes
4answers
406 views

BSON serializer/deserializer

is there a BSON serializer/deserializer library out there for PHP or Java? Thanks
2
votes
1answer
3k views

Mongo JSON document -> JSON -> BSON

I am working with Node.js to build a web socket server that uses mongodb. I am using node-mongodb-native as the library to access mongo db. When I call console.log(sys.inspect(item)) on an object ...
1
vote
1answer
53 views

mongodb micro-optimization of batch inserts ? or is this an important optimization?

premise : update statements are harmless since the driver by default works in one way messaging (as long as getLastError isn't used). question Is the following fragment the best way to do this in ...
1
vote
2answers
109 views

Query nested objects from MongoDB

I created a script in SSIS to retrieve data from MongoDB. While I don't have any issues querying regular documents, I am not sure how to retrieve values from nested documents. For example, "Address" ...
1
vote
1answer
205 views

Haskell - correct way to map BSON to JSON - where to put code

So, I'm new to Haskell, and its community. I want to make a mongodb-backed JSON API. Mongo and JSON are a good fit (at least in node), because it stores its documents in BSON, which is "binary json", ...
1
vote
1answer
514 views

Bundler: “Could not find bson-1.4.0 in any of the sources”

I'm trying to do a bundle install but I'm getting the error Could not find bson-1.4.0 in any of the sources. I believe bson-1.4.0 is a requirement for mongoid ~> 2.0 which is in my Gemfile. When I ...
1
vote
2answers
103 views

Binary Typing Problem

I am trying to work with the Haskell Bson and I want to save and load them. The saving seems to be no problem, but I get a typing error with the Binary.get functions. Here's my code: {-# LANGUAGE ...
1
vote
1answer
275 views

MongoDB insert speed trade-offs

In short: There is a huge difference in insert speeds when I keep a JSON object with many fields in a single, string field of MongoDB, or keep each field of the JSON object in its own MongoDB field. ...
1
vote
2answers
178 views

MongoDB's BSON gem can't read a MongoDB database file?

I have a MongoDB DB with some data. That all works fine, the data was inserted into the mongo DB properly. What I want to do now, though, is open the mongoDB DB file, and parse it using the BSON gem ...
1
vote
3answers
598 views

Serializing object graph using MongoDB Bson serializer

I've been playing a little with the MongoDB Bson serializer, using the following piece of code: class Program { public class myValue { public int Id = 0; public string Label ...
1
vote
2answers
331 views

Save session as BSON instead of a String on node.js with MongoDB

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 ...
1
vote
1answer
165 views

Change BSON field value (C++)

I'm testing BSON as a wire protocol, and I need to be able to change some values on a already created BSONObj... the problem is I can't find a way to do this other than recreating the BSONObj from ...
1
vote
1answer
1k views

Bulk Insert (like import) bson encoded data in mongodb

I am new to mongodb and thinking of trying this out in PHP5. If someone has any info or has done this please help. Basically I have a an object (or array of arrays) in PHP that I bson_encode. I am ...
1
vote
1answer
161 views

Does Key order matter in a MongoDB BSON doc?

I know certain commends need the hashmap / dictionary to be ordered, but does the actual BSON document in MongoDB matter and would the index still work? E.g. db.people.ensureIndex({LName:1, ...
1
vote
2answers
704 views

java types in org.bson.BSONObject

I'm currently learning the BSON java library for mongodb and I'm trying to transform a org.bson.BSONObject into XML in order to transform it with a XSLT stylesheet. What kind of java types can I find ...
1
vote
2answers
500 views

Is Base64 Encoded BSON smaller then BSON?

Is Base64 Encoded BSON smaller then BSON?
0
votes
1answer
21 views

MongoDB Map Reduce Exclude When Count = 0

In my map reduce which gets a count I don’t want the document to show up in my results where the count is 0 so how can I exclude them from showing up in the results, I assume I would do it in the ...
0
votes
2answers
29 views

What does the “0” mean in MongoDB's BinData(0, “e8MEnzZoFyMmD7WSHdNrFJyEk8M=”)?

The MongoDB shell prints binary data as a Base64-encoded string wrapped in what looks like a function call: "_id" : BinData(0,"e8MEnzZoFyMmD7WSHdNrFJyEk8M=") What does the "0" mean?
0
votes
1answer
32 views

Simple Map/Reduce MongoVUE

I am trying to get a simple map reduce working in MongoVUE, but it doesn't return any results, I just want to get it to output the count of each userID just so I can have a working example to build ...
0
votes
1answer
63 views

MongoDB Query C# Driver

Hi I am having trouble with expressing this query in c# mongodb, i want it to return all the results of an objectID where it does not equal "000000000000000000000000" which works in mongovue but i ...
0
votes
1answer
65 views

Cannot serialize an object of class Post into BSON

I have in model post.rb: class Post include Mongoid::Document attr_accessible :content, :original_post end in create action in posts_controller.rb: def create @post = Post.new(params[:post]) ...
0
votes
1answer
58 views

How to get OID of a BSON object as a hex string?

I am using the mongo-cpp driver trying to convert the object ID of a BSON object to a string BSONObj r=some_function(); BSONElement oi; r.getObjectID(oi); OID o=oi.__oid(); ...
0
votes
1answer
55 views

Use data from mongodb backup in rails app… i.e. convert BSON to JSON using ruby?

I have a bunch of data from a mongodb backup that I'd like to import into a new rails app (was developing using mongo, now switching back to activerecord). I've tried the obvious ...
0
votes
0answers
44 views

MongoDB C# Field Names as Values

Let's say I have a dynamic schema in MongoDB and one of the BSONDocuments "other" can have different documents with values. For example: -Other ---Page:25 ---Title: WC ---Author: Dickens + some ...
0
votes
1answer
95 views

How to convert string to BSON using MongoDB C++ driver?

Similar to toString is there a way we can convert a string to BSON object? I need to remove a document using C++ driver the the remove function expects the query to have BSON object.
0
votes
1answer
76 views

Properly parse a Mongo cursor to PHP

When converting a MongoCursor to PHP I use this script. Which was presented here StackOverflowSO using the upper method, the structure is same but _id is whereas using the lower script which yields ...
0
votes
1answer
35 views

Return either flag value or BSON ObjectId

I'm writing a Java program using MongoDB. I have one class with a function that could have one of three outcomes: Look for suitable object for the function's input in MongoDB collection, find it, ...
0
votes
2answers
262 views

Unable to deserialize PyMongo ObjectId from JSON

I'm seemingly unable to deserialize my MongoDB JSON document with the BSON json_util. The json.loads function is choking on the ObjectId() string. I had understood json_util capable of handling ...
0
votes
0answers
32 views

command line prettify BSON

been working with mongo recently, which means a ton of very large nested hashes in (basically) json format. Currently I am piping json through python -mjson.tool in emacs, which works great for json, ...

1 2