Is the Ruby client threadsafe? For example... session = Cassandra.cluster.connect Thread.new{ session.execute("select * from ks1.table1") } Thread.new{ session.execute("select * from ks2.table2") }
Notice multiple threads accessing the same session object, and also notice different keyspaces being queried in the CQL. Will that code work? Thank you for the help.