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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,17 +58,17 @@ addFactor!(dfg, [v1, v2], DFGFactor{Int, :Symbol}(:f1)) # Rather use a RoME-type
58
58
Please see the documentation for more information on interacting with the factor graph.
59
59
60
60
## Setting up a Quick Neo4j Database
61
-
The simplest way to set up a test database is with Docker.
61
+
The simplest way to set up a test database is with Docker. The Neo4j driver currenly doesn't work with Neo4j 4.0, version 3.5 can be used as in this example.
62
62
63
63
To pull the Neo4j image:
64
64
```bash
65
-
docker pull neo4j
65
+
docker pull neo4j:3.5
66
66
```
67
67
68
68
To run the image with user `neo4j` and password `test`:
69
69
70
70
```bash
71
-
docker run -d --publish=7474:7474 --publish=7687:7687 --env NEO4J_AUTH=neo4j/test neo4j
71
+
docker run -d --publish=7474:7474 --publish=7687:7687 --env NEO4J_AUTH=neo4j/test neo4j:3.5
72
72
```
73
73
74
74
> **Note** If you just installed docker and having permission issues, please see [this ask Ubuntu forum](https://askubuntu.com/questions/941816/permission-denied-when-running-docker-after-installing-it-as-a-snap).
- users responsibility to delete big data in db before deleting entry
69
102
"""
70
-
functiondeleteBigDataEntry!(var::AbstractDFGVariable, key::Symbol)::Union{Nothing, AbstractDFGVariable}#users responsibility to delete big data in db before deleting entry
functiondeleteBigDataEntry!(dfg::AbstractDFG, label::Symbol, key::Symbol)::Union{Nothing, AbstractDFGVariable}#users responsibility to delete big data in db before deleting entry
functiondeleteBigDataEntry!(var::AbstractDFGVariable, entry::AbstractBigDataEntry)::Union{Nothing, AbstractDFGVariable}#users responsibility to delete big data in db before deleting entry
0 commit comments