mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
refactor: reduce GC pressure by pre-allocating slices
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
3982ba7258
commit
d229ff39e5
10 changed files with 325 additions and 262 deletions
4
utils/cache/simple_cache.go
vendored
4
utils/cache/simple_cache.go
vendored
|
@ -100,7 +100,7 @@ func (c *simpleCache[K, V]) evictExpired() {
|
|||
}
|
||||
|
||||
func (c *simpleCache[K, V]) Keys() []K {
|
||||
var res []K
|
||||
res := make([]K, 0, c.data.Len())
|
||||
c.data.Range(func(item *ttlcache.Item[K, V]) bool {
|
||||
if !item.IsExpired() {
|
||||
res = append(res, item.Key())
|
||||
|
@ -111,7 +111,7 @@ func (c *simpleCache[K, V]) Keys() []K {
|
|||
}
|
||||
|
||||
func (c *simpleCache[K, V]) Values() []V {
|
||||
var res []V
|
||||
res := make([]V, 0, c.data.Len())
|
||||
c.data.Range(func(item *ttlcache.Item[K, V]) bool {
|
||||
if !item.IsExpired() {
|
||||
res = append(res, item.Value())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue