Archives for NoSQL
Couchbase vs DynamoDB
Couchbase Advantages Run on almost any cloud platform – including AWS Avoid DynamoDB’s item-size restrictions Speed up performance with in-memory processing and built-in caching Use your team’s existing SQL skills…
Multiple copies of data–and editability
A book has an author –an Author has multiple books. A book would be modeled as a document in NoSQL – as would an author. So - we end up…
Tracking relationships in NOSQL
In NoSQL, there is no way to 'relate' the post with the comments. So, what do you do? Well - you essentially store the postId and the commentId - for…
NoSQL and data integrity
Redundant Data Storage NoSQL stores many to many relationships in the same way that de-normalized tables do – by storing them redundantly. Since you do not base your NoSQL design…