如何在现有的repo中使用Neo4j配置Rails?

ruyhziif  于 2022-10-01  发布在  其他
关注(0)|答案(1)|浏览(124)

我目前正在尝试将我的数据库重新配置为使用Neo4j,而不是postgres,我在配置方面遇到了问题。

我已经将neo4j gem以及neo4j-coreneo4j-ruby-driverneo4j-rake_tasks添加到了我的gefile中。我尝试运行rake neo4j:install[community-latest]来生成Neo4j示例,但是在列出了所有rake任务之后,它抛出了这个-zsh: no matches found: neo4j:install[community-latest],这个rake任务似乎并不存在,尽管每个在线资源都将其演示为生成数据库的方法。我目前运行的是rails版本6.1.3.2和ruby版本2.6.6

这些是我一直在使用的一些资源。

1.https://neo4jrb.readthedocs.io/en/v10.0.1/Setup.html
1.https://diatomenterprises.com/using-neo4j-with-ruby-on-rails/

非常感谢提前🙏

gjmwrych

gjmwrych1#

这是zsh外壳错误解释命令行中的括号的问题。

使用单引号来转义参数。示例:

rake 'neo4j:install[community-latest,development]'

相关问题