You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The automatic module name of the driver for the Java Module System is `org.neo4j.driver`.
45
46
46
47
### Example
47
48
@@ -61,41 +62,36 @@ Network connections are acquired on demand from the pool when running Cypher que
61
62
As a result of this design, it is expensive to create and close a ``Driver`` object.
62
63
``Session`` objects, on the other hand, are very cheap to use.
63
64
64
-
65
65
### Thread Safety
66
66
67
67
``Driver`` objects are thread-safe, but ``Session`` and ``Transaction`` objects should only be used by a single thread.
68
68
69
-
70
69
### Further reading
71
70
Check out our [Wiki](https://github.com/neo4j/neo4j-java-driver/wiki) for detailed and most up-to-date developer manuals, driver API documentations, changelogs, etc.
72
71
73
-
74
72
### Bug Report
75
73
If you encounter any bugs while using this driver, please follow the instructions in our [Contribution Guide](https://github.com/neo4j/neo4j-java-driver/blob/1.6/CONTRIBUTING.md#need-to-raise-an-issue)
76
74
when raising an issue at [Issues](https://github.com/neo4j/neo4j-java-driver/issues).
77
75
78
76
When reporting, please mention the versions of the driver and server, as well as the server topology (single instance, causal cluster, etc).
79
77
Also include any error stacktraces and a code snippet to reproduce the error if possible, as well as anything else that you think might be helpful.
80
78
81
-
82
-
## For Driver Developers
79
+
## For Driver Engineers
83
80
84
81
This section targets users who would like to compile the driver source code on their own machine for the purpose of, for example, contributing a PR.
85
82
Before contributing to this project, please take a few minutes to read our [Contribution Guide](https://github.com/neo4j/neo4j-java-driver/blob/1.6/CONTRIBUTING.md#want-to-contribute).
86
83
87
-
88
84
### Java Version
89
85
90
-
For the 1.5 series driver and above, source code _must_ compile on Java 8.
91
-
For previous versions, the compilation requires Java 7.
86
+
For the 1.5+ Driver Series, the source code _must_ compile on Java 8.
92
87
88
+
For the previous versions, the compilation requires Java 7.
93
89
94
90
### Building
95
91
96
92
The source code here reflects the current development status of a new driver version.
97
-
To use the driver in a project, please use the released driver via Maven Central or check out the code with git tags of corresponding versions instead.
98
93
94
+
To use the driver in a project, please use the released driver via Maven Central or check out the code with git tags of corresponding versions instead.
0 commit comments