I have a big json file (larger than 1.8 GB), this file is generated each day by another go application. I want to process this file as fast as I can with Golang. What would the best solution here?
json structure within file is like following
[
{
"attribute_id": 123,
"attribute_name": "....",
"date":"2022-07-01 00:03:02"
},
...
]