Cassandra Setup and Installation Apache Cassandra and Datastax enterprise is used by different organization for storing huge amount of data. Before installing…
keyspace
Cassandra Tutorial Cassandra tutorial provides basic and advanced concepts of Cassandra. Our Cassandra tutorial is designed for beginners and professionals both. Cassandra…
Cassandra Vs HBase The following table specifying the main differences between Cassandra and HBase: HBase Cassandra HBase is based on Bigtable (Google)…
Cassandra Vs RDBMS The following table specifying the main differences between Cassandra and RDBMS: Cassandra RDBMS Cassandra is used to deal with…
Relational database vs. NoSQL database Cassandra is a NoSQL database. The main objective of a NoSQL database is to have the following…
Use Cases/ Applications of Cassandra Cassandra can be used for different type of applications. Following is a list of use cases where…
Cassandra Create Data INSERT command is used to insert data into the columns of the table. Syntax: INSERT INTO <tablename> (<column1 name>,…
Cassandra DELETE Data DELETE command is used to delete data from Cassandra table. You can delete the complete table or a selected…
Cassandra READ Data SELECT command is used to read data from Cassandra table. You can use this command to read a whole…
Cassandra Update Data UPDATE command is used to update data in a Cassandra table. If you see no result after updating the…