Workin progress. v0.7.0 docs update + update script.
Summary: Map literals are removed from user tech upcoming features. Reviewers: mferencevic, teon.banek Reviewed By: teon.banek Subscribers: pullbot, buda Differential Revision: https://phabricator.memgraph.io/D671
This commit is contained in:
parent
6a1f083370
commit
db028221ae
@ -15,7 +15,7 @@ After a successful download the Memgraph Docker image
|
||||
can be imported into Docker:
|
||||
|
||||
```
|
||||
docker load -i /path/to/memgraph_alpha_v0.6.0.tar.gz
|
||||
docker load -i /path/to/memgraph_alpha_v0.7.0.tar.gz
|
||||
```
|
||||
|
||||
### Image Configuration & Running Memgraph
|
||||
@ -23,7 +23,7 @@ docker load -i /path/to/memgraph_alpha_v0.6.0.tar.gz
|
||||
Memgraph can be started by executing:
|
||||
|
||||
```
|
||||
docker run -it -p 7687:7687 memgraph_alpha_v0.6.0
|
||||
docker run -it -p 7687:7687 memgraph_alpha_v0.7.0
|
||||
```
|
||||
|
||||
The `-it` option enables displaying Memgraph's logs inside the current shell.
|
||||
@ -45,7 +45,7 @@ mkdir -p memgraph
|
||||
# Docker expects full path to the created folder.
|
||||
FULL_OUTPUT_PATH=$PWD/memgraph
|
||||
# Run Memgraph.
|
||||
docker run -d -p 7687:7687 -v ${FULL_OUTPUT_PATH}:/var/lib/memgraph --name <memgraph_docker_container_name> memgraph_alpha_v0.6.0
|
||||
docker run -d -p 7687:7687 -v ${FULL_OUTPUT_PATH}:/var/lib/memgraph --name <memgraph_docker_container_name> memgraph_alpha_v0.7.0
|
||||
```
|
||||
|
||||
In the commands above `-d` means that the container will be detached (run in
|
||||
|
@ -25,18 +25,6 @@ allow deletion of created indices.
|
||||
Although we have implemented the most common features of the openCypher query
|
||||
language, there are other useful features we are still working on.
|
||||
|
||||
#### Map Literals
|
||||
|
||||
This feature would enable using ad-hoc property maps. For example, updating
|
||||
multiple properties on an existing node:
|
||||
|
||||
MATCH (node) SET node = { name: "Lamp", price: 100, color: "blue" }
|
||||
|
||||
Note that the same can be achieved with the current support but in a longer
|
||||
way:
|
||||
|
||||
MATCH (node) SET node.name = "Lamp", node.price = 100, node.color = "blue"
|
||||
|
||||
#### Named Paths
|
||||
|
||||
It would be useful to store paths that match a pattern into a variable. This
|
||||
|
10
docs/user_technical/update_version
Executable file
10
docs/user_technical/update_version
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
working_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
# TODO: add arguments --previous-version & --next-version
|
||||
# TODO: validate version format
|
||||
# TODO: if version isn't updated bundle can't succeed
|
||||
# TODO: integrate with bundle
|
||||
|
||||
sed -i "s@$1@$2@g" ${working_dir}/installation.md
|
Loading…
Reference in New Issue
Block a user