1 个不稳定版本

使用旧的 Rust 2015

0.1.0 2016年7月1日

#7#couch-db

MIT/Apache

7KB
55 代码行

r2d2-couchdb 构建状态 MIT 许可证 Apache 2.0

CouchDB 支持 r2d2 连接池的库。阅读文档

示例

extern crate r2d2;
extern crate r2d2_couchdb;
extern crate serde_json;

use r2d2_couchdb::{CouchdbConnectionManager};

use std::thread;

fn main() {
    let config = r2d2::Config::default();
    let manager = CouchdbConnectionManager::new("https://127.0.0.1:5984/").unwrap();
    let pool = r2d2::Pool::new(config, manager).unwrap();

    let mut handles = vec![];

    for i in 0..20 {
        let pool = pool.clone();
        handles.push(thread::spawn(move || {
            let content = serde_json::builder::ObjectBuilder::new()
                .insert("foo", i)
                .unwrap();
            println!("Sending {}", &content);
            let conn = pool.get().unwrap();
            conn.create_document("/test", &content).run().unwrap();
        }));
    }

    for handle in handles {
        handle.join().unwrap()
    }
}

依赖项

~11MB
~238K SLoC