Build a Graph Store
Explore how to build a graph store within an Elixir umbrella project by setting up a dedicated storage area using priv_dir. Learn to organize directories for graph data, queries, and scripts, and update the project modules for efficient access and management of graph persistence.
We'll cover the following...
We'll cover the following...
Storage area
It’s time to look at persistence.
We’re going to work with graphs of various types. We want some place to store the graphs that we create and also a place to source example graphs. We also want to save ...