-
Notifications
You must be signed in to change notification settings - Fork 671
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reuse key buffers during hashing (#2902)
- Loading branch information
1 parent
5be62de
commit d7452d3
Showing
4 changed files
with
206 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved. | ||
// See the file LICENSE for licensing terms. | ||
|
||
package merkledb | ||
|
||
import "sync" | ||
|
||
type bytesPool struct { | ||
slots chan struct{} | ||
bytesLock sync.Mutex | ||
bytes [][]byte | ||
} | ||
|
||
func newBytesPool(numSlots int) *bytesPool { | ||
return &bytesPool{ | ||
slots: make(chan struct{}, numSlots), | ||
bytes: make([][]byte, 0, numSlots), | ||
} | ||
} | ||
|
||
func (p *bytesPool) Acquire() []byte { | ||
p.slots <- struct{}{} | ||
return p.pop() | ||
} | ||
|
||
func (p *bytesPool) TryAcquire() ([]byte, bool) { | ||
select { | ||
case p.slots <- struct{}{}: | ||
return p.pop(), true | ||
default: | ||
return nil, false | ||
} | ||
} | ||
|
||
func (p *bytesPool) pop() []byte { | ||
p.bytesLock.Lock() | ||
defer p.bytesLock.Unlock() | ||
|
||
numBytes := len(p.bytes) | ||
if numBytes == 0 { | ||
return nil | ||
} | ||
|
||
b := p.bytes[numBytes-1] | ||
p.bytes = p.bytes[:numBytes-1] | ||
return b | ||
} | ||
|
||
func (p *bytesPool) Release(b []byte) { | ||
// Before waking anyone waiting on a slot, return the bytes. | ||
p.bytesLock.Lock() | ||
p.bytes = append(p.bytes, b) | ||
p.bytesLock.Unlock() | ||
|
||
select { | ||
case <-p.slots: | ||
default: | ||
panic("release of unacquired semaphore") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved. | ||
// See the file LICENSE for licensing terms. | ||
|
||
package merkledb | ||
|
||
import "testing" | ||
|
||
func Benchmark_BytesPool_Acquire(b *testing.B) { | ||
s := newBytesPool(b.N) | ||
|
||
b.ResetTimer() | ||
for i := 0; i < b.N; i++ { | ||
s.Acquire() | ||
} | ||
} | ||
|
||
func Benchmark_BytesPool_Release(b *testing.B) { | ||
s := newBytesPool(b.N) | ||
for i := 0; i < b.N; i++ { | ||
s.Acquire() | ||
} | ||
|
||
b.ResetTimer() | ||
for i := 0; i < b.N; i++ { | ||
s.Release(nil) | ||
} | ||
} | ||
|
||
func Benchmark_BytesPool_TryAcquire_Success(b *testing.B) { | ||
s := newBytesPool(b.N) | ||
|
||
b.ResetTimer() | ||
for i := 0; i < b.N; i++ { | ||
s.TryAcquire() | ||
} | ||
} | ||
|
||
func Benchmark_BytesPool_TryAcquire_Failure(b *testing.B) { | ||
s := newBytesPool(1) | ||
s.Acquire() | ||
|
||
b.ResetTimer() | ||
for i := 0; i < b.N; i++ { | ||
s.TryAcquire() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters