release: v1.0.0

This commit is contained in:
2024-05-23 14:41:39 +08:00
commit 2640ecd03b
38 changed files with 3247 additions and 0 deletions

28
internal/pool/pool.go Normal file
View File

@@ -0,0 +1,28 @@
package pool
import (
"log/slog"
"runtime/debug"
"github.com/alitto/pond"
)
type PoolOpts struct {
Logg *slog.Logger
WorkerCount int
}
func NewPool(o PoolOpts) *pond.WorkerPool {
return pond.New(
o.WorkerCount,
1,
pond.Strategy(pond.Balanced()),
pond.PanicHandler(panicHandler(o.Logg)),
)
}
func panicHandler(logg *slog.Logger) func(interface{}) {
return func(panic interface{}) {
logg.Error("block processor goroutine exited from a panic", "error", panic, "stack_trace", string(debug.Stack()))
}
}