Skip to content

Instantly share code, notes, and snippets.

@tristantarrant
Created February 3, 2016 10:02
Show Gist options
  • Select an option

  • Save tristantarrant/95baf5657c99f1177ae4 to your computer and use it in GitHub Desktop.

Select an option

Save tristantarrant/95baf5657c99f1177ae4 to your computer and use it in GitHub Desktop.
Cassandra CacheStore keyspace creation
CREATE KEYSPACE IF NOT EXISTS Infinispan WITH replication = {'class':'SimpleStrategy', 'replication_factor':1};
CREATE TABLE Infinispan.InfinispanEntries (key blob PRIMARY KEY, value blob, metadata blob);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment