我想在neo4j docker容器中启用全文搜索,并遵循以下内容:https://neo4j.com/developer/kb/fulltext-search-in-neo4j/
我将config目录设置为卷。有没有办法转储conf / neo4j.properties以查看当前有什么?不确定这是否是一件事或者我是否只需要创建文件。我尝试创建文件,然后附加到正在运行的docker容器并运行neo4j-shell并运行index --get-config node_auto_index
,但只是说No such node index 'node_auto_index'
。
我也尝试过把
# Enable auto-indexing for nodes, default is false.
node_auto_indexing=true
Then in the same file add the node property keys to be auto-indexed.
# The node property keys to be auto-indexed, if enabled.
node_keys_indexable=name,title,tagline
在我创建转储后的neo4j.conf文件的底部。
有任何建议或是否有人成功完成此任务?
谢谢!
答案 0 :(得分:0)
我从未想过这一点,但现在最终使用了APOC功能。
我最有可能最终使用solr进行索引以获得更好的全文搜索过滤(:叹气)。