-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
71a94d5
commit 6c7cd15
Showing
10 changed files
with
167 additions
and
154 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
Oops, something went wrong.