0.24
New features:
--start
and --range
have been replaced with --keyspace
:
--keyspace START
: Start at key START and continue forever
--keyspace START:END
Start at key START and end at key END
--keyspace START:+COUNT
Start at key START and end at key START + COUNT
--keyspace :END
Start at key 1 and end at key END
--keyspace :+COUNT
Start at key 1 and end at key 1 + COUNT
--continue FILE
will write progress to FILE
. If FILE
already exists, it will read it and continue from where it left off, and update FILE
with new progress. FILE
is updated every 60 seconds.
--share M/N
will divide the keyspace into N
equal parts and process the Mth
part. For example, --share 3/5
will divide the keyspace into 5 parts, and process part 3. This is useful for work distribution among multiple processes.
--stride N
will increment the counter by N instead of counting by 1. This was a requested feature.