首页 > 解决方案 > 无法使用 finally_consistent 设置创建全文搜索

问题描述

我目前收到错误

Missing kernel to cypher mapping for limitation: EVENTUALLY_CONSISTENT

当我尝试在具有全文索引设置的节点/标签上创建时。

全文搜索索引设置代码:

CALL db.index.fulltext.createNodeIndex(
        "titleAndKeywords",
        [
            ...label_names
        ],
        [
            ...properties
        ],
        {
            eventually_consistent : "true"
        });

删除eventually_consistent创建中的修复此问题

在版本 4.0.4

标签: neo4jcypher

解决方案


推荐阅读