We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 542fcff commit 4156040Copy full SHA for 4156040
benchmarks/vote/vote.rs
@@ -48,6 +48,12 @@ fn main() {
48
.takes_value(false)
49
.help("stage execution such that all writes are performed before all reads"),
50
)
51
+ .arg(
52
+ Arg::with_name("unsharded")
53
+ .long("unsharded")
54
+ .takes_value(false)
55
+ .help("disable sharding"),
56
+ )
57
.arg(
58
Arg::with_name("distribution")
59
.short("d")
@@ -235,6 +241,7 @@ fn main() {
235
241
s.log = !args.is_present("quiet");
236
242
s.transactions = args.is_present("transactions");
237
243
s.stupid = args.is_present("stupid");
244
+ s.sharding = !args.is_present("unsharded");
238
245
let g = graph::make(s, persistence_params);
239
246
240
247
// prepare getters
0 commit comments