Add Cassandra support

Add auto-configuration support and health checks for Cassandra and
Spring Data Cassandra.

Fixes gh-2064
Closes gh-2214
This commit is contained in:
Julien Dubois
2014-12-22 11:06:37 +01:00
committed by Phillip Webb
parent 49fab4a60f
commit c401330901
32 changed files with 1417 additions and 4 deletions

View File

@@ -0,0 +1,3 @@
CREATE TABLE customer (id TimeUUID PRIMARY KEY, firstname text, lastname text);
CREATE INDEX customerfistnameindex ON customer (firstname);
CREATE INDEX customersecondnameindex ON customer (lastname);