Is SimpleDB similar to MongoDB?
Is SimpleDB similar to MongoDB?
The most substantial similarity is the fact that they both avoid the relational model. Other than that, they are mainly different any way you look at them. Here is a breakdown of a dozen or so ways to compare them.
SimpleDB is described as:
The data model is simply:
- Large collections of items organized into domains.
- Items are little hash tables containing attributes of key, value pairs.
- Attributes can be searched with various lexicographical queries.
MongoDB is a bit simpler:
The database manages collections of JSON-like documents which are stored in a binary format referred to as BSON.