Slide 27
Slide 27 text
Denormalization in NoSQL
{
"users": {
"user1": {
"name": "Alice"
},
"user2": {
"name": "Bob"
}
},
"links": {
"link1": {
"title": "Example",
"href": "http://example.org",
"submitted": "user1"
}
},
"comments": {
"comment1": {
"link": "link1",
"body": "This is awesome!",
"author": "user2"
}
}
}
Join data in client