Imen
Imen

Reputation: 171

Lagom Cassandra Driver

According to some research about Lagom and Cassandra, I found that:

  1. Lagom uses DataStax Java Driver for Cassandra, and

  2. DataStax Java Driver only supports Cassandra 3.0.x (link)

So, if I want to use Cassandra 3.11 and Lagom, what should I do:

  1. Should I configure Lagom with another Cassandra driver like Achilles, PlayORM, ... (link). Is that possible?
  2. is DataStax support Cassandra 3.11 in the enterprise edition?

Any help, please?

Upvotes: 1

Views: 246

Answers (1)

Alex Ott
Alex Ott

Reputation: 87259

DataStax Java Driver 3.2.0 that is used by Lagom should work with Cassandra 3.11 out of the box (just checked it myself using simple queries).

Even if it won't work out of the box, you can explicitly override driver version in Maven or other build system.

Upvotes: 1

Related Questions