You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code is based on my previous line count code. This code is meant to go beyond fast counting of lines. This code can be used to process / parse line content fast
Purpose was to read line fast - single thread. This program can be enhanced using goroutines
Approach
Bulk read data and then split it into lines using an approach
Building code
go build fastlineprocessing.go
About
This code is based on my previous line count code. This code is meant to go beyond fast counting of lines. This code can be used to process / parse line content fast