We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Thanks to user wolpert for the example (http://github.com/wolpert/)
private static final ThreadLocal <Keyspace> keyspaceHolder = new ThreadLocal <Keyspace> () { @Override protected Keyspace initialValue() { Cluster cluster = HFactory.getOrCreateCluster(clusterName, servers); return createKeyspace(keyspace, cluster); } }; public static Keyspace getKeyspace() { return keyspaceHolder.get(); }