Yoel Susanto

Results 4 comments of Yoel Susanto

@fzipi @mcdee @theseion I created a [PR](https://github.com/goccy/go-yaml/pull/438) to fix some of the memory allocation issue. This in turn also allows the parser to run faster. Can you test my change...

I faced this problem sometime ago and I used `UNNEST` to solve it. The main idea is instead of sending many parameters individually, we send it as an array so...

# Benchmark ```go package main import ( "bytes" "fmt" "testing" "github.com/goccy/go-yaml" goyaml2 "gopkg.in/yaml.v2" goyaml3 "gopkg.in/yaml.v3" ) func prepareSampleData(line int) []byte { var data bytes.Buffer for i := 0; i <...

@goccy would you mind to have a look on the PR? 🙏 Thank you!