mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
parent
99e47fc5fc
commit
01cbd5cb58
|
@ -41,10 +41,10 @@ func NewCompactSection(start Key) *CompactSection {
|
||||||
//return old entry size
|
//return old entry size
|
||||||
func (cs *CompactSection) Set(key Key, offset uint32, size uint32) uint32 {
|
func (cs *CompactSection) Set(key Key, offset uint32, size uint32) uint32 {
|
||||||
ret := uint32(0)
|
ret := uint32(0)
|
||||||
|
cs.Lock()
|
||||||
if key > cs.end {
|
if key > cs.end {
|
||||||
cs.end = key
|
cs.end = key
|
||||||
}
|
}
|
||||||
cs.Lock()
|
|
||||||
if i := cs.binarySearchValues(key); i >= 0 {
|
if i := cs.binarySearchValues(key); i >= 0 {
|
||||||
ret = cs.values[i].Size
|
ret = cs.values[i].Size
|
||||||
//println("key", key, "old size", ret)
|
//println("key", key, "old size", ret)
|
||||||
|
|
Loading…
Reference in a new issue