RedisGraph is the first queryable Property Graph database to use sparse matrices to represent the adjacency matrix in graphs and linear algebra to query the graph. To see RedisGraph in action, visit Demos. To read the docs, visit redisgraph.io.
- Based off latest version of Redis Graph.
- Included bash scripts to run Redis Sentinel easily in Kubernetes.
To run a simple setup of a single Redis Graph container in Docker use:
docker run -p 6379:6379 zappi/redis-graph:<tag>
And to run a more complex setup using Redis Sentinel in Kubernetes use the
reference example manifests here. Replace zappi/redis:<tag>
with
zappi/redis-graph:<tag>
and run:
kubectl apply -f examples/kubernetes/
- Clone the main branch, and create a branch for the feature / fix.
- Make your changes.
- Update the changelog with your changes. The version should follow the upstream version of the packaged application. For example if the version of RedisGraph is 2.8.8, the version will be 2.8.8. In the case where the version already exists, you should append an incrementing single digit to it (i.e. 2.8.8-1).
- Push your branch up and create a pull request.
- After the pull request is merged, git pull origin main and ensure it's up-to-date.
- Create a tag with the version you added to the changelog using git tag -a x.y.z. The title should be "Version x.y.z" followed by the changes as the message (as per the changelog).
- Push your tag, which will kick off a CI workflow to build and release the image.