有没有办法检查当前上下文中是否存在 Astyanax 键空间?现在我的代码执行以下操作:
keyspace = context.getClient();
try{
keyspace.describeKeyspace();
}catch (BadRequestException e){
keyspace.createKeyspace(ImmutableMap.<String, Object>builder()
.put("strategy_options", ImmutableMap.<String, Object>builder()
.put("replication_factor", "1")
.build())
.put("strategy_class", "SimpleStrategy")
.build();
}
这是检查键空间是否存在的唯一方法吗?