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
Copy file name to clipboardExpand all lines: README.md
+5-2
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This project contains Rust extensions to speed up the [official Python driver for Neo4j](https://github.com/neo4j/neo4j-python-driver).
4
4
5
-
The exact speedup depends on the use-case but has been measured to be between 3x and 10x faster.
5
+
The exact speedup depends on the use-case but has been measured to be up to 10x faster.
6
6
Use-cases moving only few but big records out of the DBMS tend to benefit the most.
7
7
8
8
@@ -20,6 +20,9 @@ That's it!
20
20
You don't have to change your code but can use the driver as you normally would.
21
21
This package will install the driver as its dependency and then inject itself in a place where the driver can find it and pick it up.
22
22
23
+
N.B., since the driver is a simple Python dependency of this package, you can also manually install/specify both packages at the same time without issues.
24
+
However, make sure the versions match if you do so or leave the version of one of the two unspecified to let the package manager pick a compatible version for you (resolution might be slow, however).
25
+
23
26
If you experience issues with the driver, consider troubleshooting without the Rust extension first.
24
27
For that, simply make sure you haven't installed `neo4j-rust-ext` but *only*`neo4j`.
25
28
@@ -28,7 +31,7 @@ For that, simply make sure you haven't installed `neo4j-rust-ext` but *only* `ne
28
31
For many operating systems and architectures, the pre-built wheels will work out of the box.
29
32
If they don't, pip (or any other Python packaging front-end) will try to build the extension from source.
30
33
Here's what you'll need for this:
31
-
* Rust 1.65.0 or later:
34
+
* Rust 1.67.0 or later:
32
35
https://www.rust-lang.org/tools/install
33
36
* Further build tools (depending on the platform).
0 commit comments