hugegraph-sync/hugegraph-server
imbajin 496b15048a
feat: init serena memory system & add memories (#2902)
2025-11-06 14:22:40 +08:00
..
hugegraph-api refactor(server): remove graph param in auth api path (#2899) 2025-11-04 19:34:12 +08:00
hugegraph-cassandra BREAKING CHANGE(server): support "parent & child" EdgeLabel type (#2662) 2024-10-10 00:15:32 +08:00
hugegraph-core fix(server): support GraphAPI for rocksdb & add tests (#2900) 2025-11-04 19:33:25 +08:00
hugegraph-dist fix(server): handle graph data sync inconsistent problem (#74) 2025-10-29 15:58:32 +08:00
hugegraph-example perf(example): add PerfExample5 and PerfExample6 (#2860) 2025-09-16 10:25:11 +08:00
hugegraph-hbase fix(server): change graphspace/graph to graphspace_graph in hbase 2025-10-29 15:58:32 +08:00
hugegraph-hstore fix(server): handle graph data sync inconsistent problem (#74) 2025-10-29 15:58:32 +08:00
hugegraph-mysql BREAKING CHANGE(server): support "parent & child" EdgeLabel type (#2662) 2024-10-10 00:15:32 +08:00
hugegraph-palo fix(server): clean up the code (#2456) 2024-02-22 17:26:15 +08:00
hugegraph-postgresql fix(server): clean up the code (#2456) 2024-02-22 17:26:15 +08:00
hugegraph-rocksdb chore(server): bump rocksdb version from 7.2.2 to 8.10.2 (#2896) 2025-11-01 04:10:08 +08:00
hugegraph-scylladb fix(server): remove extra blank lines (#2459) 2024-02-25 11:45:00 +08:00
hugegraph-test refactor(server): remove graph param in auth api path (#2899) 2025-11-04 19:34:12 +08:00
AGENTS.md docs: add AGENTS.md with project guidance 2025-10-29 15:58:32 +08:00
Dockerfile feat: init serena memory system & add memories (#2902) 2025-11-06 14:22:40 +08:00
Dockerfile-hstore fix: migrate to LTS jdk11 in all Dockerfile (#2901) 2025-11-04 06:50:42 -06:00
README.md BREAKING CHANGE(server): disable legacy backends include `MySQL/PG/c*`(.etc) (#2746) 2025-04-28 15:20:37 +08:00
pom.xml chore(dist): tar source and binary package for hugegraph with pd-store (#2594) 2024-08-06 21:21:14 +08:00

README.md

HugeGraph Server

HugeGraph Server consists of two layers of functionality: the graph engine layer, and the storage layer.

  • Graph Engine Layer:

    • REST Server: Provides a RESTful API for querying graph/schema information, supports the Gremlin and Cypher query languages, and offers APIs for service monitoring and operations.
    • Graph Engine: Supports both OLTP and OLAP graph computation types, with OLTP implementing the Apache TinkerPop3 framework.
    • Backend Interface: Implements the storage of graph data to the backend.
  • Storage Layer:

    • Storage Backend: Supports multiple built-in storage backends (RocksDB/Memory/HStore/HBase/...) and allows users to extend custom backends without modifying the existing source code.