1

我正在使用灯泡在 Heroku 上设置 Neo4J 应用程序。在本地它运行良好,但是当我在 heroku 上部署它时,它会在以下代码中引发错误部分:

#heroku config:get NEO4J_URL
#http://user:password@instance.ip/
try:
    cfg = Config(instance.ip,user,password)
    g = Graph(cfg)
except: 
    return "OOPS! ERROR CONFIGURING GRAPH!"

我应该做什么?

我也试过了,cfg.set_neo4j_heroku()但没用。

4

1 回答 1

0

从最新版本开始,出于安全原因,Heroku 插件不支持将 Groovy 脚本发送到服务器。试试 Cypher 吗?http://docs.neo4j.org/chunked/snapshot/cypher-query-lang.html

于 2013-06-13T09:21:54.757 回答