Documentation
¶
Overview ¶
Package parallel implements helpers for fast processing of line oriented inputs.
Index ¶
Constants ¶
View Source
const Version = "0.1.0"
Version of library.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BytesBatch ¶
type BytesBatch struct {
// contains filtered or unexported fields
}
BytesBatch is a slice of byte slices.
func NewBytesBatch ¶
func NewBytesBatch() *BytesBatch
NewBytesBatch creates a new BytesBatch with a given capacity.
func NewBytesBatchCapacity ¶
func NewBytesBatchCapacity(cap int) *BytesBatch
NewBytesBatchCapacity creates a new BytesBatch with a given capacity.
func (*BytesBatch) Size ¶
func (bb *BytesBatch) Size() int
Size returns the number of elements in the batch.
func (*BytesBatch) Slice ¶
func (bb *BytesBatch) Slice() []Record
Slice returns a slice of byte slices.
type Processor ¶
type Processor struct { BatchSize int RecordSeparator byte NumWorkers int SkipEmptyLines bool // contains filtered or unexported fields }
Processor can process lines in parallel.
func NewProcessor ¶
NewProcessor creates a new line processor.
func (*Processor) RunWorkers ¶
RunWorkers allows to quickly set the number of workers.
Click to show internal directories.
Click to hide internal directories.