nekrassov01 / access-log-parser

Simple access log parser utilities for golang
https://pkg.go.dev/github.com/nekrassov01/access-log-parser
MIT License
1 stars 0 forks source link

Improve `parser` performance with goroutine #3

Closed nekrassov01 closed 8 months ago

nekrassov01 commented 8 months ago

Currently, log lines are processed synchronously without much consideration for performance. Consider whether performance can be improved by goroutine.

nekrassov01 commented 8 months ago

The optimization performed in 0.0.18 led to the conclusion that there is no need to force parallelization.