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
+15-5Lines changed: 15 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,23 +18,23 @@ This package requires the following tools/libraries to be installed in order to
18
18
2. Clone [seabolt](http://github.com/neo4j-drivers/seabolt) (assume `<seabolt_dir>` to be the absolute path in which the clone resides) and make sure you can build it successfully (follow it's own instructions)
19
19
3. Add/Update environment variable `PKG_CONFIG_PATH` to include `<seabolt_dir>/build`
20
20
4. Add/Update environment variable `LD_LIBRARY_PATH` to include `<seabolt_dir>/build/lib`
21
-
5. Get this package via `go get github.com/neo4j/neo4j-go-driver`
21
+
5. Get this package via `go get github.com/neo4j/neo4j-go-driver/neo4j`
22
22
23
23
### MacOS
24
24
25
25
1. Install pkg-config via `brew install pkg-config`
26
26
2. Clone [seabolt](http://github.com/neo4j-drivers/seabolt) (assume `<seabolt_dir>` to be the absolute path in which the clone resides) and make sure you can build it successfully,
27
27
3. Add/Update environment variable `PKG_CONFIG_PATH` to include `build` subdirectory of seabolt, i.e. `$PKG_CONFIG_PATH:<seabolt_dir>/build`
28
28
4. Add/Update environment variable `LD_LIBRARY_PATH` to include `<seabolt_dir>/build/lib`
29
-
5. Go Get this package via `go get github.com/neo4j/neo4j-go-driver`
29
+
5. Go Get this package via `go get github.com/neo4j/neo4j-go-driver/neo4j`
30
30
31
31
### Windows
32
32
33
33
1. Install a mingw toolchain (for instance MSYS2 from https://www.msys2.org/) for cgo support (seabolt include some instructions),
34
34
2. Clone [seabolt](http://github.com/neo4j-drivers/seabolt) (assume `<seabolt_dir>` to be the absolute path in which the clone resides) and make sure you can build it successfully,
35
35
3. Add/Update environment variable `PKG_CONFIG_PATH` to include `build` subdirectory of seabolt, i.e. `%PKG_CONFIG_PATH%;<seabolt_dir>/build`
36
36
4. Update environment variable `PATH` to include `<seabolt_dir>/build/bin`
37
-
5. Go Get this package via `go get github.com/neo4j/neo4j-go-driver`
37
+
5. Go Get this package via `go get github.com/neo4j/neo4j-go-driver/neo4j`
38
38
39
39
## Versioning
40
40
@@ -45,7 +45,7 @@ Although `master` branch contains the source code for the latest available relea
45
45
Add the driver as a dependency with `dep`.
46
46
47
47
```
48
-
dep ensure -add github.com/neo4j/neo4j-go-driver
48
+
dep ensure -add github.com/neo4j/neo4j-go-driver/neo4j
There are a few points that need to be highlighted:
92
102
* Each `Driver` instance maintains a pool of connections inside, as a result, it is recommended to only use **one driver per application**.
93
103
* It is considerably cheap to create new sessions and transactions, as sessions and transactions do not create new connections as long as there are free connections available in the connection pool.
@@ -143,7 +153,7 @@ The temporal types are introduced in Neo4j 3.4 series.
143
153
You can create a 2-dimensional `Point` value using;
0 commit comments