# memdb **Repository Path**: wangboa/memdb ## Basic Information - **Project Name**: memdb - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-27 - **Last Updated**: 2024-10-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # MemDB 新一代的 HTAP 数据库,数据都在内存中。 ## 架构 1. Share Nothing 设计,Cache friendly 2. 列存格式 ## 事务隔离级别 Snapshot ## 写入流程 ```mermaid graph TD A[Gateway-Http/JDBC] --> B[WAL] B --> C[ShardManager] C --> D[ShardTable] D --> E[Snapshot] E --> F[DeltaCommit] F --> G[Page] ``` ## RoadMap 1. 实现基于 http 接口的插入 2. 对接 DataFusion 实现查询 3. compaction 4. update