button-icon

Iniciarsesión

Iniciarsesión
Archi's Academy
    Cursos
    Cursos
  • Proyectos
    Proyectos
  • Archi's Academy

    Tracks

    #
  • Blog
    Blog
  • Precios
    Precios
  • Contacto
    Contacto
  • Para clubs universitarios
    Para clubs universitarios

BLACK FRIDAY

85% de descuento durante todo noviembre

whatsapp
Contáctanos
Archi's Academy

Navegación

  • Precios

Legal

  • Política de privacidad
  • Términos de servicio

Contacto

+1 (217) 200 90 93
Suite No: 8, 400 Emmet Street
Kissimmee, Florida 34741 USA
[email protected]

Copyright © Tech Career Yazılım Danışmanlık A.Ş. 2026

instagramlinkedingithubyoutubexfacebook
visamastercardstripeiyzicoamerican-express
ETBIS
  1. Home›
  2. Blog›
  3. Deeper Dive Into The NoSQL

Software Development

Deeper Dive Into The NoSQL

  • NoSQL is the gen*eral name given to horizontally scalable systems that emerged as an alternative to relational database management systems (RDBMS), originally to store the increasing data of the internet and to meet the needs of high-traffic systems. No SQL systems are called "No SQL" because the SQL language used in RDBMS is not used.
    NoSQL systems are not dependent on fixed table definitions, while RDBMSs contain data in tables and defined columns row by row. In other words, new columns can be added later without any special action, and there may be column differences between records. For example, while there are columns a and b in the 1st row, there may be different columns in the 2nd row. This flexible structure provides us with ease of denormalization. If you don’t know what is denormalization don’t worry, read the note below.
Normalization is the process of dividing larger tables into smaller ones by reducing redundant data, while denormalization is the process of adding redundant data to optimize performance.
We can collect the NoSQL types in 4 groups:
1.Key-Value
A key-value database (sometimes called a key-value store) uses a simple key-value method to store the data.
Simple string (the key) => Large data field (Value)
As the name suggests, this type of NoSQL database implements a hash table to store unique keys along with the pointers to the corresponding data values. Value can be stored as an integer, a string, JSON or an array.
KEY VALUE
john 991745841
robin 994796632
Key-Value Database Use Cases:
a.Session information for a web application
b.Use profiles and preferences
c.Shopping card data for online stores
Examples :
riak.png
redis.png
2.Document
Data stored as documents (JSON, XML, BSON..). Documents are ordered sets of key-value pairs and hierarchical tree data structures. Here is an example:
{
 “bookID”: “978548512222”
  “title”: “The Linux Command Line”
 “author”: “William E. Shoots”
}
Document Database Use Cases:
a.Event logging
b.Blogs and other web applications
c.Operational and meta data for web/mobile applications
Examples:
mongoDB.png
ibm.png
3.Column-Family
Column-family databases are spawned from an architecture that Google created called BigTable. Column families are similar to tables in a relational database. Rows in the same column family are not required to contain the same columns. Columns can be added to any or all rows in a column family.
Column-Family Use Cases:
a.Event logging
b.Blogs
c.Counters
d.Expiring Usage(TTL per column)
Examples:
cassandra.png
hibase.png
4.Graph
Data stored as entities and relationships. Entities are called nodes and relationships are the edges between nodes. You can use this database if your data is highly connected. It is relationship oriented and not aggregate oriented like the other NoSQL variations.
Graph Database Use Cases:
a.Connected data (e.g. social networking)
b.Routing and special applications
c.Recommendation engines
Examples:
ig.png
flockdb.png
archis-trainee

Seher Saylık

Perşembe, Haz 24, 2021

¿Listo para convertir el conocimiento en habilidades reales?

Empieza a construir con formación guiada por proyectos y gana experiencia práctica desde el primer día.

TOC

Table of Content

No sections found