No SQL using Redis

Yuana, Andhika

<andhikayuana@gmail.com>

No SQL

  • "Not Only SQL"
    • not use SQL as Query Language
    • Distributed
    • No fixed Schema
    • No Join
  • Class of database management systems (DBMS)
  • RDBMS compliments

REDIS

Remote Dictionary Server

What is Redis?

  • Key-Value Store
  • All Data in Memory (RAM)
  • Type Value
    • Hashses
    • Lists
    • Sets
    • Sorted Sets

Primitive String

Hashes

Lists

Sets

Sorted Sets

Installation

  1. Download Redis server [http://redis.io/download]
  2. Extract
  3. Run redis-server
  4. CLI inteface using redis-cli
  5. GUI interface using Redis Desktop Manager [https://redisdesktop.com/]

No SQL using Redis

By Andhika Yuana

No SQL using Redis

Introduction No SQL using Redis

  • 713