diff options
author | n-peugnet <n.peugnet@free.fr> | 2021-08-30 19:22:03 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2021-08-30 19:22:03 +0200 |
commit | 36da6832dce67da09d7bcee1a6ab2312e515cb0a (patch) | |
tree | 124ce9a3cae0371934fd34305a00133c753bdfc9 /const.go | |
parent | 204f6150056edd1bc8f33a7d75609594e34437eb (diff) | |
download | dna-backup-36da6832dce67da09d7bcee1a6ab2312e515cb0a.tar.gz dna-backup-36da6832dce67da09d7bcee1a6ab2312e515cb0a.zip |
make sketch parameters global vars
Diffstat (limited to 'const.go')
-rw-r--r-- | const.go | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -3,9 +3,12 @@ package main // Defined as var to prevent from using them as const as I want to keep // beeing able to change tkem at runtime. var ( - chunkSize = 8 << 10 - chunksName = "chunks" - chunkIdFmt = "%015d" - versionFmt = "%05d" - filesName = "files" + chunkSize = 8 << 10 + chunksName = "chunks" + chunkIdFmt = "%015d" + versionFmt = "%05d" + filesName = "files" + sketchWSize = 32 + sketchSfCount = 3 + sketchFCount = 4 ) |