|
|
преди 10 години | |
|---|---|---|
| .. | ||
| README.md | преди 10 години | |
| batcher.go | преди 11 години | |
| batcher_test.go | преди 11 години | |
The batching resiliency pattern for golang.
Creating a batcher takes two parameters:
You can also optionally set a prefilter to fail queries before they enter the batch.
b := batcher.New(10*time.Millisecond, func(params []interface{}) error {
// do something with the batch of parameters
return nil
})
b.Prefilter(func(param interface{}) error {
// do some sort of sanity check on the parameter, and return an error if it fails
return nil
})
for i := 0; i < 10; i++ {
go b.Run(i)
}