Created
October 24, 2011 20:03
-
-
Save rblalock/1309990 to your computer and use it in GitHub Desktop.
Sample nosql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "title" : "A blog post", | |
| "author" : "Kristina", | |
| "content" : "...", | |
| "tags" : ["MongoDB", "Map/Reduce", "Recipe"] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // RDMS | |
| // 5 tables: | |
| // people, cities, cars, car_cities, car_people | |
| //NoSQL | |
| // 1 collection: 'cities' with 2 attributes: 'people and cars' | |
| Cities = { | |
| 'LA': { | |
| people: { | |
| 'Rick': { | |
| 'location': 'Hollywood', | |
| 'status': 'Jugando futbol' | |
| }, | |
| 'Alan': { | |
| 'location': 'West Side', | |
| 'isDrunk': true | |
| }, | |
| 'Dawson': { | |
| 'driving': true, | |
| 'isDrunk': false, | |
| 'car': 'Ferrari' | |
| } | |
| }, | |
| cars: ['Ferrari', 'Audi', 'Honda'] | |
| }, | |
| 'Mountain View': { | |
| people: { | |
| 'Kincy': { | |
| 'working': true | |
| } | |
| }, | |
| cars: ['Ford'] | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment