* Update title tags and meta desc for Templates * Update title tags and meta desc for Learn * Update title tags, meta desc, and H1s for Case Studies * Update themes/default/content/learn/abstraction-encapsulation/_index.md Co-authored-by: susan evans <susan.ra.evans@gmail.com> * Update themes/default/content/learn/embedding-pulumi/_index.md Co-authored-by: susan evans <susan.ra.evans@gmail.com> * Update themes/default/content/learn/embedding-pulumi/building-api/index.md Co-authored-by: susan evans <susan.ra.evans@gmail.com> * Update themes/default/content/learn/building-with-pulumi/stack-references/index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/container-service/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/kubernetes/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/serverless-application/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/virtual-machine/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/static-website/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update atlassian.md * Update index.md --------- Co-authored-by: susan evans <susan.ra.evans@gmail.com> Co-authored-by: Sean Holung <sean.holung@gmail.com>
1.2 KiB
title_tag, title, meta_desc, layout
title_tag | title | meta_desc | layout |
---|---|---|---|
What is a Graph Oriented Database? | Graph Oriented Database | A graph-oriented database is a type of NoSQL database that relies on the graph data structure to define and manage relationships between different entries. | glossary/single |
Definition
A graph-oriented database is a type of NoSQL database that relies on the graph data structure to define and manage relationships between different entries. Like the data structure, graph-oriented databases have the concepts of nodes and edges. Each entry or record in the database is a node, and the edges of each node are that entry’s relationship to other nodes in the database. An edge of one node could describe an action taken involving another node in the database, ownership over an account, or provenance of the node. For instance, determining a pattern of purchases amongst users who have similar behavior.
Use Cases
The strength of a graph-oriented database lies in its ability to enable semantic queries. Because of this, it’s great for things like recommendation engines (“people who bought $product also bought $otherProduct!”) and social networks (friends of friends).