在 Neo4j 中如何创建触发器?
我想在 Neo4j 中添加、更新或删除某种类型的节点时调用一些 Java 代码。我该怎么做?
I would like to call some Java code when a node of a certain type is added, updated or deleted in Neo4j. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
考虑使用 TransactionEventHandler。您需要实现该接口,然后注册事件处理程序,如下所示:
华泰
Look into using TransactionEventHandler. You need to implement the interface, and then you register your event handler like this:
HTH
你能创建自己的规则函数吗?
http://neo4j.rubyforge.org/guides/rules_and_functions .html#创建您自己的规则函数
Can you create your own Rule function?
http://neo4j.rubyforge.org/guides/rules_and_functions.html#creating-your-own-rule-function