Graph library sous RUST
petgraph is a graph data structure library.
Graph which is an adjacency list graph with arbitrary associated data.
StableGraph is similar to Graph, but it keeps indices stable across removals.
GraphMap is an adjacency list graph which is backed by a hash table and the node identifiers are the keys into the table.
Optional crate feature: "serde-1", see the Readme for more information.
Des scripts à mettre en place pour node_exporter de prometheus
What is a Graph Database?
A graph database is an online database management system with Create, Read, Update and Delete (CRUD) operations working on a graph data model.
Unlike other databases, relationships take first priority in graph databases. This means your application doesn’t have to infer data connections using things like foreign keys or out-of-band processing, such as MapReduce.
The data model for a graph database is also significantly simpler and more expressive than those of relational or other NoSQL databases.
Graph databases are built for use with transactional (OLTP) systems and are engineered with transactional integrity and operational availability in mind.
°o° Les bases de données inspirées de la théorie des graphs...
Impressionnant le concept mais peut être difficile à mettre en place en pratique...