1
use bonsaidb::core::{arc_bytes::serde::Bytes, schema::Collection};
2
use criterion::{Criterion, Throughput};
3
use serde::{Deserialize, Serialize};
4

            
5
mod bonsai;
6
#[cfg(feature = "sqlite")]
7
mod rusqlite;
8

            
9
50
#[derive(Serialize, Deserialize, Debug, Collection)]
10
#[collection(name = "resizable-docs")]
11
struct ResizableDocument {
12
    data: Bytes,
13
}
14

            
15
1
pub fn save_documents(c: &mut Criterion) {
16
1
    static KB: usize = 1024;
17
1

            
18
1
    // First set of benchmarks tests inserting documents
19
1
    let mut group = c.benchmark_group("save_documents");
20
5
    for size in [KB, 2 * KB, 8 * KB, 32 * KB, KB * KB] {
21
5
        group.throughput(Throughput::Bytes(size as u64));
22
5
        let mut data = Vec::with_capacity(size);
23
1092608
        data.resize_with(size, || 7u8);
24
5
        let doc = ResizableDocument {
25
5
            data: Bytes::from(data),
26
5
        };
27
5

            
28
5
        bonsai::save_documents(&mut group, &doc);
29
5
        #[cfg(feature = "sqlite")]
30
5
        rusqlite::save_documents(&mut group, &doc);
31
5
    }
32
1
    group.finish();
33
1
}