triviumdb 0.7.0

A high-performance memory-mmap hybrid search engine built for AI, combining dense vector, sparse text, graph relations, and JSON metadata.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! FFI 绑定层
//!
//! 将 TriviumDB 核心引擎暴露给 Python (PyO3) 和 Node.js (NAPI) 运行时。
//! 两个子模块共享 `Filter::from_json` 和 `SyncMode::parse` 公共逻辑,
//! 仅包含各自运行时的类型转换和 FFI 胶水代码。

#[cfg(feature = "nodejs")]
pub mod nodejs;

#[cfg(feature = "python")]
pub mod python;