Hey volks,
im using the DataStax C# Driver for Apache Cassandra (CassandraCSharpDriver v3.9.0) to connect to my cassandra cluster.
Now the goal is to minimize writing cycles to my cluster.
My Question is if its better to use Session.CreateKeyspaceIfNotExists Method to create / use my designated keyspace to work
or would i get lesser writing cycles by checking the list of keyspaces (session.Cluster.Metadata.GetKeyspaces();) and then only creating the keyspace if its not in the list?
best regards
Robert