Rust implementation of Facebook's DataLoader using futures and tokio-core.
This project is a work in progress. - [x] Batching load requests - [ ] Cache load result
Add fake to your Cargo.toml
toml
[dependencies]
futures = "0.1"
dataloader = { git = "https://github.com/cksac/dataloader-rs" }
```rust extern crate futures; extern crate dataloader;
use dataloader::{Loader, BatchFn, LoadError}; use futures::Future; use futures::future::ok;
struct Batcher;
impl BatchFn
fn main() { let loader = Loader::new(Batcher); let v1 = loader.load(1); let v2 = loader.load(2); assert_eq!((10, 20), v1.join(v2).wait().unwrap()); } ```