Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用独立服务器运行neo4j-reco README 示例。
如何更改它以使用并连接到我的外部 neo4j 服务器?
您可以将推荐引擎 jar 以及相应的版本部署到 neo4j 独立服务器。
然后,您可以创建一个附加到引擎的存储过程,以便您可以通过 Cypher 请求建议。
这里有一个程序示例:
https://github.com/graphaware/recommendations-meetup/blob/master/src/main/java/com/graphaware/meetup/procedure/MeetupRecommendationProcedure.java
以及相应的集成测试:
https://github.com/graphaware/recommendations-meetup/blob/master/src/test/java/com/graphaware/meetup/MyRecommendationEngineIntegrationTest.java#L72