Neo4j v4.1.5 社区版 CREATE INDEX 不识别 OPTIONS
Neo4j v4.1.5 Community Edition CREATE INDEX doesn't recognise OPTIONS
我正在尝试使用 CYPHER 和 OPTIONS 在 Neo4j 4.1.5 Community Edition 上创建索引,但是它不起作用。
命令:
CREATE INDEX index_content_name IF NOT EXISTS FOR (n:__Content) ON (n.name) OPTIONS { indexProvider: 'lucene+native-3.0' }
错误:
Invalid input 'O': expected whitespace, comment, ';' or end of input (line 1, column 77 (offset: 76))
"CREATE INDEX index_content_name IF NOT EXISTS FOR (n:__Content) ON (n.name) OPTIONS { indexProvider: 'lucene+native-3.0'
社区版是否禁用了此功能?
如果不是,我做错了什么?
Neo4j 4.2.0 中添加了 OPTIONS
子句(请参阅此处的变更日志:https://github.com/neo4j/neo4j/wiki/Neo4j-4.2-changelog#cypher-2)
阅读文档时,确保select您的 Neo4j 服务器版本正确:
我正在尝试使用 CYPHER 和 OPTIONS 在 Neo4j 4.1.5 Community Edition 上创建索引,但是它不起作用。
命令:
CREATE INDEX index_content_name IF NOT EXISTS FOR (n:__Content) ON (n.name) OPTIONS { indexProvider: 'lucene+native-3.0' }
错误:
Invalid input 'O': expected whitespace, comment, ';' or end of input (line 1, column 77 (offset: 76))
"CREATE INDEX index_content_name IF NOT EXISTS FOR (n:__Content) ON (n.name) OPTIONS { indexProvider: 'lucene+native-3.0'
社区版是否禁用了此功能?
如果不是,我做错了什么?
Neo4j 4.2.0 中添加了 OPTIONS
子句(请参阅此处的变更日志:https://github.com/neo4j/neo4j/wiki/Neo4j-4.2-changelog#cypher-2)
阅读文档时,确保select您的 Neo4j 服务器版本正确: