User Tools

Site Tools


database:nosql

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
database:nosql [2014/01/04 23:38] – created skipidardatabase:nosql [2023/11/01 07:13] (current) – ↷ Page moved from business_process_management:camunda:database:nosql to database:nosql skipidar
Line 1: Line 1:
 +===== NOSQL =====
 +**NOT ONLY** SQL
  
 +Adds **scalability**, **distribution** to the databases. \\
 +Makes DB **Document-oriented**. Allowing storage of data as "documents" with different structure in the same DB. E.g. following docs may be stored in the same DB:
 +Details: http://en.wikipedia.org/wiki/Document-oriented_database
 +
 +<code>
 +  {
 +    FirstName: "Jonathan",
 +    Address: "15 Wanamassa Point Road",
 +    Children: [
 +         {Name: "Michael", Age: 10},
 +         {Name: "Jennifer", Age: 8},
 +         {Name: "Samantha", Age: 5},
 +         {Name: "Elena", Age: 2}
 +    ]
 +   }
 +   
 +  {
 +     FirstName: "Bob",
 +     Address: "5 Oak St.",
 +     Hobby: "sailing"
 +  }
 +</code>
 +
 +
 +Details: http://www.firatatagun.com/nosql/NoSQL-Theory,%20implementations,%20an%20introduction.pptx