amarnath vishwakarma
amarnath vishwakarma

Reputation: 111

Most common cassandra cql commands

I am looking at exploring optimization of cassandra for a limited set of commands. For that I wanted to know which among SELECT, INSERT, UPDATE, DELETE & BATCH is the CQL command with highest frequency of use in realtime systems. Any pointers and thoughts on this would be great help.

Upvotes: 0

Views: 154

Answers (1)

Akki
Akki

Reputation: 2359

There is no such thing as common cql commands, it all depends for which use case cassandra is deployed.

So Instead of optimizing commands you could go for Use Case based optimization:

Eg: UseCase: Write oriented Workload: Optimize Insert and Update commands.

Upvotes: 1

Related Questions