Cassandra Batch In Cassandra BATCH is used to execute multiple modification statements (insert, update, delete) simultaneously. It is very useful when you…
Cassandra Tutorial
-
-
Cassandra Collections Cassandra collections are used to handle tasks. You can store multiple elements in collection. There are three types of collection…
-
Cassandra Data Types Cassandra supports different types of data types. Let?s see the different data types in the following table: CQL Type…
-
Cassandra CQLsh Cassandra CQLsh stands for Cassandra CQL shell. CQLsh specifies how to use Cassandra commands. After installation, Cassandra provides a prompt…
-
Cassandra Create Index CREATE INDEX command is used to create an index on the column specified by the user. If the data…
-
Cassandra Create Keyspace Cassandra Query Language (CQL) facilitates developers to communicate with Cassandra. The syntax of Cassandra query language is very similar…
-
Cassandra Create Table In Cassandra, CREATE TABLE command is used to create a table. Here, column family is used to store data…
-
Cassandra Data Model Data model in Cassandra is totally different from normally we see in RDBMS. Let’s see how Cassandra stores its…
-
Cassandra DROP Index DROP INDEX command is used to drop a specified index. If the index name was not specified during index…
-
Cassandra Drop Keyspace In Cassandra, “DROP Keyspace” command is used to drop keyspaces with all the data, column families, user defined types…