commit | 8b8ad5fe0e30d8a3b6cdb3cfbeca1a3bb9df9c40 | [log] [tgz] |
---|---|---|
author | John Gemignani <jrgemignani@gmail.com> | Tue Jan 17 16:57:11 2023 -0800 |
committer | John Gemignani <jrgemignani@gmail.com> | Tue Jan 17 16:57:11 2023 -0800 |
tree | e15c3302663feafc858cea7a1d47ee202e2f9f6e | |
parent | 5ee637d4d08704c22b20f03080a44355db82e47f [diff] |
Updated files for PG12 AGE release to 1.1.1 modified: Makefile modified: README.md modified: RELEASE renamed: age--1.1.0.sql -> age--1.1.1.sql modified: age.control
Apache AGE is a PostgreSQL Extension that provides graph database functionality. AGE is an acronym for A Graph Extension, and is inspired by Bitnine's fork of PostgreSQL 10, AgensGraph, which is a multi-model database. The goal of the project is to create single storage that can handle both relational and graph model data so that users can use standard ANSI SQL along with openCypher, the Graph query language.
A graph consists of a set of vertices (also called nodes) and edges, where each individual vertex and edge possesses a map of properties. A vertex is the basic object of a graph, that can exist independently of everything else in the graph. An edge creates a directed connection between two vertices. A graph database is simply composed of vertices and edges. This type of database is useful when the meaning is in the relationships between the data. Relational databases can easily handle direct relationships, but indirect relationships are more difficult to deal with in relational databases. A graph database stores relationship information as a first-class entity. Apache AGE gives you the best of both worlds, simultaneously.
Apache AGE is:
Powerful -- AGE adds graph database support to the already popular PostgreSQL database: PostgreSQL is used by organizations including Apple, Spotify, and NASA. Flexible -- AGE allows you to perform openCypher queries, which make complex queries much easier to write. Intelligent -- AGE allows you to perform graph queries that are the basis for many next level web services such as fraud & intrusion detection, master data management, product recommendations, identity and relationship management, experience personalization, knowledge management and more.
This README file is for the Apache AGE PostgreSQL 12 release
Apache AGE Viewer is a subproject of the Apache AGE project: https://github.com/apache/age-viewer
Here is the link to the latest Apache AGE documentation. You can learn about how to install Apache AGE, its features and built-in functions and how to use various Cypher queries.
You can improve ongoing efforts or initiate new ones by sending pull requests to this repository. Also, you can learn from the code review process, how to merge pull requests, and from code style compliance to documentation, by visiting the Apache AGE official site - Developer Guidelines.