1

在 CouchBase(4.1.1) 中,N1QL 可以使用整个元素创建索引,以这两个示例为例。

假设我们有这个文档结构:

{
   "name": "blah",
   "credentials": [
       {
          "level": 5,
          "sector": "XP"
       }
   ],
}

现在说我们想根据名称和整个凭据元素创建 index1 可能吗?

就像是

create index indexName on `bucketName` (name, credentials) USING GSI;

或 index2 基于名称和嵌套字段之一,如级别;怎么可能做到这一点?就像是

create index indexName on `bucketName`(name, credential.levels) USING GSI; 

运行解释时,我的二级索引没有被使用,couchbase 默认为这个存储桶的主索引。

这是我正在使用的选择。

select s.name, s.credentials 
from `security` unnest s.credentials
where credentials is not missing and name = 'tom';

这是制作的解释:

{
    "requestID": "f8d46eeb-3898-4ace-a24f-1582e0504eb7",
    "signature": "json",
    "results": [
        {
            "#operator": "Sequence",
            "~children": [
                {
                    "#operator": "PrimaryScan",
                    "index": "#primary",
                    "keyspace": "read",
                    "namespace": "default",
                    "using": "gsi"
                },
                {
                    "#operator": "Parallel",
                    "~child": {
                        "#operator": "Sequence",
                        "~children": [
                            {
                                "#operator": "Fetch",
                                "as": "s",
                                "keyspace": "bucketName",
                                "namespace": "default"
                            },
                            {
                                "#operator": "Unnest",
                                "as": "beacons",
                                "expr": "(`s`.`credentials`)"
                            },
                            {
                                "#operator": "Filter",
                                "condition": "((`s`.`name`) = \"tom\")"
                            },
                            {
                                "#operator": "InitialProject",
                                "result_terms": [
                                    {
                                        "expr": "(`s`.`id`)"
                                    },
                                    {
                                        "expr": "`credentials`"
                                    }
                                ]
                            },
                            {
                                "#operator": "FinalProject"
                            }
                        ]
                    }
                }
            ]
        }
    ],
    "status": "success",
    "metrics": {
        "elapsedTime": "2.82063ms",
        "executionTime": "2.765439ms",
        "resultCount": 1,
        "resultSize": 1917
    }
}
4

2 回答 2

2

根据我的发现,如果您尝试创建索引,则必须排除不包含您要索引的字段的文档。因此,对于我上面的示例,一旦我添加:name is not missingwhere语句内部,我的查询开始使用我的二级索引。

下面来自Couchbase 网站的简介使我得出了这个发现

注意:MISSING 项不被索引器索引。为了利用覆盖索引并使索引符合条件,查询需要排除索引键表达式评估为 MISSING 的文档。

于 2016-07-06T06:05:55.780 回答
1

以下查询应使用您的索引。

select s.name, s.credentials 
from `security` s
where s.credentials is not missing and s.name = 'tom';

select s.name, credentials 
from `security` s unnest s.credentials
where s.credentials is not missing and s.name = 'tom';
于 2016-06-28T06:59:31.387 回答