| Crates.io | kotoba-distributed |
| lib.rs | kotoba-distributed |
| version | 0.1.16 |
| created_at | 2025-09-17 14:43:09.49383+00 |
| updated_at | 2025-09-17 14:43:09.49383+00 |
| description | Distributed execution engine for Kotoba graph processing system |
| homepage | https://github.com/jun784/kotoba |
| repository | https://github.com/jun784/kotoba |
| max_upload_size | |
| id | 1843439 |
| size | 99,650 |
分散実行システム for Kotoba graph processing system.
Kotoba Distributed は、Kotoba のグラフ処理を分散環境で実行するためのクレートです。CIDベースのキャッシュとタスク分散により、高いパフォーマンスを実現します。
use kotoba_distributed::{DistributedEngine, NodeId};
// 分散実行エンジンの作成
let node_id = NodeId("node_1".to_string());
let engine = DistributedEngine::new(node_id);
// ルール適用の分散実行
let result = engine.apply_rule_distributed(&rule, &graph, &mut cid_manager).await?;
kotoba-core: 基本型定義kotoba-graph: グラフデータ構造kotoba-execution: クエリ実行tokio: 非同期ランタイム