forked from TrueCloudLab/frostfs-node
[#176] blobstor: Use 1 byte names of sub-directories in FS tree
Using 2 bytes length for directories in fs tree lead to large growth in the number of directories. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
2d917a024f
commit
70a65c5aff
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ type fsTree struct {
|
||||||
rootDir string
|
rootDir string
|
||||||
}
|
}
|
||||||
|
|
||||||
const dirNameLen = 2 // in bytes
|
const dirNameLen = 1 // in bytes
|
||||||
|
|
||||||
var maxDepth = (sha256.Size - 1) / dirNameLen
|
var maxDepth = (sha256.Size - 1) / dirNameLen
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue