AgensGraph
AgensGraph is an open-source multi-model graph database built on PostgreSQL, combining relational and graph data models. Supports ANSI-SQL and openCypher queries with enterprise features like ACID transactions and MVCC, ideal for applications requiring complex relationship analysis.
## AgensGraph - Multi-Model Graph Database AgensGraph is an open-source multi-model database built on PostgreSQL that combines relational and graph data models in a single platform. It enables developers to work with legacy SQL data alongside flexible graph structures seamlessly. ### Key Features - **Dual Model Support:** Combines relational and graph data models in one database - **Multiple Query Languages:** ANSI-SQL, openCypher, and partial ISO/GQL support - **Enterprise Capabilities:** ACID transactions, MVCC, stored procedures, triggers, and JSON support - **Extensibility:** Integrates with PostgreSQL's ecosystem (e.g., PostGIS) - **AI Toolkit:** AgensGraph-AI for building AI-powered applications - **Visualization:** AGViewer provides web-based graph visualization interface - **Language Drivers:** JDBC, Python, Node.js, and Go support available ### Usage Instructions 1. After starting the application, AgensGraph database will run on port 5432 2. Default username: `postgres` 3. Default password: `agens` 4. Default database: `agens` 5. Data will be persisted in `/lzcapp/var/data` directory ### Connection Example ```bash PGPASSWORD=agens psql -h agensgraph.${box-name}.heiyu.space -p 5432 -U postgres -d agens ``` **Quick Start Guide:** https://github.com/lazycatapps/agensgraph/blob/main/QUICKSTART.md **Official Website:** https://github.com/skaiworldwide-oss/agensgraph **Repository:** https://github.com/lazycatapps/agensgraph.git

