Skip to content

Commit

Permalink
benchmark: remove orphan doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Wünsche committed Apr 12, 2024
1 parent 3907dbd commit 84ccfe4
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions betree/haura-benchmarks/src/ycsb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,16 @@
//! Link: https://web.archive.org/web/20170809211159id_/http://www.cs.toronto.edu/~delara/courses/csc2231/papers/cooper.pdf
use betree_perf::KvClient;
use rand::distributions::Distribution;
use rand::prelude::SliceRandom;
use rand::SeedableRng;
use std::io::Write;

// Default in YCSB, 10 x 100 bytes field in one struct.
const ENTRY_SIZE: usize = 1000;
// Default of YCSB
const ZIPF_EXP: f64 = 0.99;

/// A - Update heavy
/// Operations: Read: 50%, Update 50%
/// Distribution: Zipfian
/// Application example: Session store recording recent actions in a user session
// pub fn A() {}
use rand::distributions::Distribution;
use rand::prelude::SliceRandom;
use std::io::Write;

/// C - Read heavy
/// Operations: Read 100%
/// Distribution: Zipfian
Expand Down

0 comments on commit 84ccfe4

Please sign in to comment.