summaryrefslogtreecommitdiff
path: root/src/bin/benchmark-store.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/benchmark-store.rs')
-rw-r--r--src/bin/benchmark-store.rs28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/bin/benchmark-store.rs b/src/bin/benchmark-store.rs
deleted file mode 100644
index da54590..0000000
--- a/src/bin/benchmark-store.rs
+++ /dev/null
@@ -1,28 +0,0 @@
-use obnam::benchmark::ChunkGenerator;
-use obnam::store::Store;
-use std::path::PathBuf;
-use structopt::StructOpt;
-
-#[derive(Debug, StructOpt)]
-#[structopt(name = "benchmark-store", about = "Benhcmark the store without HTTP")]
-struct Opt {
- #[structopt(parse(from_os_str))]
- chunks: PathBuf,
-
- #[structopt()]
- num: u32,
-}
-
-fn main() -> anyhow::Result<()> {
- pretty_env_logger::init();
-
- let opt = Opt::from_args();
- let gen = ChunkGenerator::new(opt.num);
-
- let store = Store::new(&opt.chunks);
- for (id, _, chunk) in gen {
- store.save(&id, &chunk)?;
- }
-
- Ok(())
-}