Skip to content
Snippets Groups Projects
Commit 86fbeb0e authored by Andreas Romeyke's avatar Andreas Romeyke
Browse files

- increased capacity of bloom filter

parent 67075607
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ STDOUT->autoflush(1); ...@@ -41,7 +41,7 @@ STDOUT->autoflush(1);
binmode(STDOUT, ":encoding(UTF-8)"); binmode(STDOUT, ":encoding(UTF-8)");
my @algorithms = qw(CRC32 MD5 SHA1 SHA256 SHA512); # used fixity algorithm names in Rosetta my @algorithms = qw(CRC32 MD5 SHA1 SHA256 SHA512); # used fixity algorithm names in Rosetta
my $capacity = 500; # bloomfilter capacity (n last seen files) my $capacity = 5000; # bloomfilter capacity (n last seen files)
# scans a given dir for IEs and stores in temporary file # scans a given dir for IEs and stores in temporary file
# There are two parts: # There are two parts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment