summaryrefslogtreecommitdiff
path: root/src/bin/benchmark-index.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/benchmark-index.rs')
-rw-r--r--src/bin/benchmark-index.rs35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/bin/benchmark-index.rs b/src/bin/benchmark-index.rs
deleted file mode 100644
index d49a6c3..0000000
--- a/src/bin/benchmark-index.rs
+++ /dev/null
@@ -1,35 +0,0 @@
-use obnam::benchmark::ChunkGenerator;
-use obnam::chunkmeta::ChunkMeta;
-use obnam::index::Index;
-use std::path::PathBuf;
-use structopt::StructOpt;
-
-#[derive(Debug, StructOpt)]
-#[structopt(
- name = "benchmark-index",
- about = "Benhcmark the store index in memory"
-)]
-struct Opt {
- // We don't use this, but we accept it for command line
- // compatibility with other benchmark programs.
- #[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 mut index = Index::new(".")?;
- for (id, checksum, _, _) in gen {
- let meta = ChunkMeta::new(&checksum);
- index.insert_meta(id, meta)?;
- }
-
- Ok(())
-}