Steve McDaniel

Results 9 issues of Steve McDaniel

The following code: ``` func Query() { cl := manticore.NewClient() cl.SetServer("127.0.0.1", 9312) cl.Open() foo, err := cl.Query("the") if err != nil { fmt.Println(err.Error()) } else { fmt.Println(foo) } } ```...

Generating the static site fails complely. I replaced my domain (which is valid) with testdomain.com, but all of the URLs in the crawl log are prefixed with a '/' and...

bug

This pull request adds VideoWriter_OpenCap that accepts apiPrefrence. To create a VideoWriter with apiPreference, the function VideoWriterCap has been exposed to accept the apiPreference. A test has been added to...

In the current implementation, it's possible to create a Bulk request that exceeds http.max_content_length that is configured on the ElasticSearch instances. If the Bulk object exceeds this size an HTTP...

enhancement
outputs
needs investigation

I am getting a segmentation fault when I am decoding json. ```` 0 0x0000000000442a40 in runtime.throw at /usr/local/go/src/runtime/panic.go:1040 1 0x000000000045998a in runtime.sigpanic at /usr/local/go/src/runtime/signal_unix.go:842 2 0x000000000084a763 in github.com/goccy/go-json/internal/encoder.appendNormalizedHTMLString at /home/steven/go/pkg/mod/github.com/goccy/[email protected]/internal/encoder/string.go:49...

bug

Doing an experiment by wrapping the json interface and testing alternative parsers such as sonic. Currently amd64 will default to sonic and arm64 will use encoding/json.

This caches DotPathToSlice and JSONPointerToSlice to prevent unnecessary allocations and string replacements on paths/pointers that are frequently looked up.

Avoid allocating/calling byte/string replace multiple times by using Replacer objects.

Minor changes to batching to trigger batch as fast as possible.