[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-81795":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":16,"stars7d":13,"stars30d":17,"stars90d":15,"forks30d":15,"starsTrendScore":17,"compositeScore":18,"rankGlobal":10,"rankLanguage":10,"license":19,"archived":20,"fork":20,"defaultBranch":21,"hasWiki":20,"hasPages":20,"topics":22,"createdAt":10,"pushedAt":10,"updatedAt":39,"readmeContent":40,"aiSummary":41,"trendingCount":15,"starSnapshotCount":15,"syncStatus":13,"lastSyncTime":42,"discoverSource":43},81795,"aiondb","ayoubnabil\u002Faiondb","ayoubnabil","PostgreSQL-compatible SQL, graph, and vector database built from scratch in Rust.","https:\u002F\u002Faiondb.xyz\u002F",null,"Rust",45,2,42,0,1,3,44.73,"Other",false,"main",[5,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38],"database","database-engine","distributed-systems","embedded-database","graph-database","graph-rag","hnsw","pgwire","postgresql","postgresql-compatible","rag","rust","rust-database","sql","vector-database","vector-search","2026-06-12 04:01:35","AionDB\n======\n\nAionDB is a Rust database. It speaks the PostgreSQL wire protocol, stores\nrows on disk through its own storage engine, and adds vector and graph\naccess paths on top of the same catalog.\n\nStatus: v0.3. Alpha. Not for production data.\n\nThe current development branch is v0.4 (planner, joins, graph execution,\nmemory use).\n\n\nQuick start\n-----------\n\nPrebuilt images:\n\n    git clone https:\u002F\u002Fgithub.com\u002Fayoubnabil\u002Faiondb.git\n    cd aiondb\n    cp quickstart.env .env\n    docker compose --profile studio up\n\nStudio: http:\u002F\u002F127.0.0.1:8082\n\npsql:\n\n    source .env\n    PGPASSWORD=\"$AIONDB_BOOTSTRAP_PASSWORD\" \\\n    psql \"host=127.0.0.1 port=${AIONDB_PGWIRE_PORT:-5432} \\\n          dbname=default user=$AIONDB_BOOTSTRAP_USER sslmode=disable\"\n\nFrom source:\n\n    cargo build --release -p aiondb-server --bin aiondb\n    target\u002Frelease\u002Faiondb --version\n\n\nWhat works today\n----------------\n\n* Tables, predicates, joins, transactions, indexes, PostgreSQL catalogs.\n* PostgreSQL wire protocol. psql and common drivers connect.\n* `VECTOR(n)` and `HALFVEC(n)` columns, pgvector-compatible casts.\n* HNSW and IVF-flat indexes. L2, cosine, inner product, L1.\n* Node labels and edge labels over ordinary tables.\n* Health, metrics, doctor, upgrade, dump, restore.\n* Docker Compose for server and Studio.\n* Reproducible benchmark harnesses under `benchmarks\u002F`.\n\n\nWhat does not work\n------------------\n\nSee `docs\u002Fcontent\u002Fdocumentation\u002Fevaluate\u002Flimitations.md`.\n\n\nDocumentation\n-------------\n\n* Getting started: `docs\u002Fcontent\u002Fdocumentation\u002Fstart\u002Fgetting-started.md`\n* Installation: `docs\u002Fcontent\u002Fdocumentation\u002Fstart\u002Finstallation.md`\n* SQL reference: `docs\u002Fcontent\u002Fdocumentation\u002Fquery\u002Fsql.md`\n* Vector reference: `docs\u002Fcontent\u002Fdocumentation\u002Fquery\u002Fvector-reference.md`\n* Graph and vector: `docs\u002Fcontent\u002Fdocumentation\u002Fquery\u002Fgraph-and-vector.md`\n* Architecture: `docs\u002Fcontent\u002Fdocumentation\u002Flearn\u002Farchitecture.md`\n* Operations: `docs\u002Fcontent\u002Fdocumentation\u002Fmanage\u002Foperations.md`\n* Benchmarks: `docs\u002Fcontent\u002Fdocumentation\u002Fevaluate\u002Fbenchmarks.md`\n\nBuild the docs site locally:\n\n    python3 docs\u002Fbuild.py\n    python3 docs\u002Fbuild.py --serve\n\n\nRepository layout\n-----------------\n\n    crates\u002Faiondb-server          pgwire server and HTTP control surface\n    crates\u002Faiondb-optimizer       logical and physical planning\n    crates\u002Faiondb-executor        query execution\n    crates\u002Faiondb-storage-engine  storage, HNSW, IVF, indexes\n    crates\u002Faiondb-vector          vector planner\u002Fruntime integration\n    crates\u002Faiondb-graph           graph data structures and paths\n    docs\u002F                         documentation site sources\n    benchmarks\u002F                   reproducible benchmark harnesses\n\n\nLicense\n-------\n\nBusiness Source License 1.1. See `LICENSE`, `COMMERCIAL-LICENSE.md`,\n`NOTICE`, `THIRD_PARTY_LICENSES.md`.\n\nEach release converts to Apache License 2.0 on the change date stated in\n`LICENSE`, or four years after the release, whichever comes first.\n\n\nContributing\n------------\n\nSee `CONTRIBUTING.md`, `GOVERNANCE.md`, `SECURITY.md`.\n\nSign off every commit:\n\n    git commit -s\n\n\nCommunity\n---------\n\nDiscord: https:\u002F\u002Fdiscord.gg\u002Fv9gwAFS7Yp\nWebsite: https:\u002F\u002Faiondb.xyz\u002F\n","AionDB 是一个用 Rust 语言从零构建的数据库，兼容 PostgreSQL 的 SQL 协议，并支持图数据库和向量数据库功能。它通过自有的存储引擎将数据行存储在磁盘上，同时提供基于相同目录结构的向量和图访问路径。技术特点包括支持表、谓词、连接、事务、索引以及 PostgreSQL 目录；实现了 pgvector 兼容的向量类型与 HNSW 和 IVF-flat 索引；还具备节点标签和边标签等图数据库特性。AionDB 适用于需要整合关系型、图结构及向量搜索能力的应用场景中进行数据管理和查询。当前版本为 v0.3 alpha 版本，不建议用于生产环境。","2026-06-11 04:06:45","CREATED_QUERY"]