-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce
bolt+unix
scheme support (#1586)
The new `bolt+unix` scheme allows connecting to Neo4j server over a Unix socket. Example: ```java try (var driver = GraphDatabase.driver("bolt+unix:///var/run/neo4j.sock")) { // use the driver var result = driver.executableQuery("SHOW DATABASES") .withConfig(QueryConfig.builder().withDatabase("system").build()) .execute(); result.records().forEach(System.out::println); } ```
- Loading branch information
1 parent
c85bbf5
commit b4f74cc
Showing
11 changed files
with
168 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 0 additions & 48 deletions
48
driver/src/main/java/org/neo4j/driver/internal/bolt/basicimpl/ConnectionProvider.java
This file was deleted.
Oops, something went wrong.
34 changes: 0 additions & 34 deletions
34
driver/src/main/java/org/neo4j/driver/internal/bolt/basicimpl/ConnectionProviders.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.