What is Cassandra?

 I have a chance to work with Cassandra on the project. This is a note of mine about this technology

Firstly, we will go over the basic knowledge of Cassandra:

  • Cassandra is NoSQL
  • It is distributed on multiple nodes
  • Write throughput is greater than read throughput
  • Performance
  • Every node works as P2P (peer to peer)
  • CQL (Cassandra Query Language) instead of SQL
So, let's talk about CQL, which is the query language of Cassandra. Some of the syntax as: CREATE, WHERE, SELECT, INSERT, and NO JOINS.

This is the difference between Relational DB and Cassandra DB:

cassandra_with_relational


Nhận xét

Bài đăng phổ biến từ blog này

GIT Command Lines

How to check if your IP can connect to another address

Cassandra Query Language (CQL) - CREATE TABLE