eventstore: SortedMerge() takes a limit and is simpler (should be faster) for small limits.

This commit is contained in:
fiatjaf
2025-12-19 06:40:22 -03:00
parent c6bd1ee446
commit 14dcc01f8f
3 changed files with 45 additions and 7 deletions

View File

@@ -2,15 +2,46 @@ package eventstore
import (
"iter"
"slices"
"fiatjaf.com/nostr"
)
func SortedMerge(it1, it2 iter.Seq[nostr.Event]) iter.Seq[nostr.Event] {
// SortedMerge combines two iterators and returns the top limit results aggregated from both.
// limit is implied to be also the maximum number of items each iterator will return.
func SortedMerge(it1, it2 iter.Seq[nostr.Event], limit int) iter.Seq[nostr.Event] {
if limit < 60 {
return func(yield func(nostr.Event) bool) {
acc := make([]nostr.Event, 0, limit*2)
for evt := range it1 {
acc = append(acc, evt)
}
for evt := range it2 {
acc = append(acc, evt)
}
slices.SortFunc(acc, nostr.CompareEventReverse)
for i := range min(limit, len(acc)) {
if !yield(acc[i]) {
return
}
}
}
}
next1, done1 := iter.Pull(it1)
next2, done2 := iter.Pull(it2)
return func(yield func(nostr.Event) bool) {
return func(yieldInner func(nostr.Event) bool) {
count := 0
yield := func(evt nostr.Event) bool {
shouldContinue := yieldInner(evt)
count++
if count >= limit {
return false
}
return shouldContinue
}
defer done1()
defer done2()