- 1 许可证
- 2 引言
- 2.1 通告
- 2.1.1 "APOC" Name history
- 2.2 Installation
- 2.2.1 With Neo4j Desktop
- 2.2.2 Download latest release
通告
- 2018-07-13 18:19:20
- 张帜
- 1570
- 最后编辑:张帜 于 2018-07-13 19:02:37
WARNING
|
Neo4j 3.2 has increased security for procedures and functions (aka sandboxing). Procedures that use internal APIs have to be allowed in
If you want to use this via docker, you need to amend |
NOTE
|
You can also whitelist procedures and functions in general to be loaded using: Neo4j 3.2 introduces user defined aggregation functions, we will use that feature in APOC in the future, e.g. for export, graph-algorithms and more, instead of passing in Cypher statements to procedures.
Please note that about 70 procedures have been turned from procedures into user defined functions. This includes, |

Neo4j 3.0 introduced the concept of user defined procedures. Those are custom implementations of certain functionality, that can’t be (easily) expressed in Cypher itself. Those procedures are implemented in Java and can be easily deployed into your Neo4j instance, and then be called from Cypher directly.
The APOC library consists of many (about 300) procedures to help with many different tasks in areas like data integration, graph algorithms or data conversion.