frostfs-node/pkg/local_object_storage/blobstor
Evgenii Stratonikov abbecf49d6 [#31] fstree: Speedup string-to-address conversion
```
name                  old time/op    new time/op    delta
_addressFromString-8    1.25µs ±30%    1.02µs ± 6%  -18.49%  (p=0.000 n=9+9)

name                  old alloc/op   new alloc/op   delta
_addressFromString-8      352B ± 0%      256B ± 0%  -27.27%  (p=0.000 n=9+10)

name                  old allocs/op  new allocs/op  delta
_addressFromString-8      6.00 ± 0%      4.00 ± 0%  -33.33%  (p=0.000
n=10+10)
```

Also, assure compiler that `s` doesn't escape:
Before this commit:
```
./fstree.go:74:24: leaking param: s
./fstree.go:90:6: moved to heap: addr
```

After this commit:
```
./fstree.go:74:24: s does not escape
```

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
2023-02-10 12:49:31 +03:00
..
blobovniczatree [#2198] blobovniczatree: Properly handle concurrent active blobovnicza update 2023-01-25 15:31:47 +03:00
common Move to frostfs-node 2022-12-28 15:04:29 +03:00
compression [#2184] compression: Properly calculate upper bound 2022-12-30 11:07:35 +03:00
fstree [#31] fstree: Speedup string-to-address conversion 2023-02-10 12:49:31 +03:00
internal/blobstortest Move to frostfs-node 2022-12-28 15:04:29 +03:00
blobstor.go [#1] Fix comments and error messages 2023-02-06 17:41:14 +03:00
blobstor_test.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
control.go [#1523] blobstor: Rename compression.CConfig to Config 2022-08-22 13:14:19 +03:00
delete.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
exists.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
exists_test.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
generic_test.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
get.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
get_range.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
info.go [#2057] blobstor: Block operations on a mode change 2022-11-19 11:01:04 +03:00
iterate.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
iterate_test.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
logger.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
mode.go Move to frostfs-node 2022-12-28 15:04:29 +03:00
put.go Move to frostfs-node 2022-12-28 15:04:29 +03:00