是否可以使用Couchbases Java Client 2.2.2以编程方式创建和发布二级索引?我希望能够创建和发布我的自定义二级索引Running Couchbase 4.1。我知道这可能与Couchbase Views有关,但我找不到相同的索引。
答案 0 :(得分:4)
需要couchbase-java-client-2.3.1才能以编程方式创建主要或次要索引。一些可用的方法可以在用于upsert视图的bucketManger
上找到。另外,可以使用静态方法createIndex
来支持DSL和String语法
创建二级索引有几个选项。
选项#1:
Statement query = createIndex(name).on(bucket.name(), x(fieldName));
N1qlQueryResult result = bucket.query(N1qlQuery.simple(query));
选项#2:
String query = "BUILD INDEX ON `" + bucket.name() + "` (" + fieldName + ")";
N1qlQueryResult result = bucket.query(N1qlQuery.simple(query));
选项#3(由于方法createN1qlIndex
过载,实际上有多个选项
bucket.bucketManager().createN1qlIndex(indexName, fields, where, true, false);
答案 1 :(得分:2)
主索引:
// Create a N1QL Primary Index (ignore if it exists)
bucket.bucketManager().createN1qlPrimaryIndex(true /* ignore if exists */, false /* defer flag */);
二级索引:
// Create a N1QL Index (ignore if it exists)
bucket.bucketManager().createN1qlIndex(
"my_idx_1",
true, //ignoreIfExists
false, //defer
Expression.path("field1.id"),
Expression.path("field2.id"));
或
// Create a N1QL Index (ignore if it exists)
bucket.bucketManager().createN1qlIndex(
"my_idx_2",
true, //ignoreIfExists
false, //defer
new String ("field1.id"),
new String("field2.id"));
如果您的文档是这样的,则第一个二级索引(my_idx_1)会很有帮助:
{
"field1" : {
"id" : "value"
},
"field2" : {
"id" : "value"
}
}
如果您的文档是这样的,第二个二级索引(my_idx_2)会很有帮助:
{
"field1.id" : "value",
"field2.id" : "value"
}
答案 2 :(得分:1)
You should be able to do this with any 2.x, once you have a Bucket
bucket.query(N1qlQuery.simple(queryString))
where queryString is something like
String queryString = "CREATE PRIMARY INDEX ON " + bucketName + "
USING GSI;";