You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using achilles in our application where we were using insert/update for single entity till now using crud().insert(entity).execute()
is there any way we can insert List of entities and execute it at once ?, just to save db calls
In Cassandra CQL, there is no efficient way to batch multiple statements together.
Indeed there is a BATCH CQL command but it will just put the stress on the coordinator node. You'll not see any perf improvement with BATCH statement. The only scenario where BATCH statement is really faster is when all your insert statements belong to the same partition key
Please support for bulk insert and update queries at once
The text was updated successfully, but these errors were encountered: