Juan Calderon-Perez
Juan Calderon-Perez
@erikdubbelboer I asked OpenAI o3 model about this and it suggested this: Problem: ```go bodyBuf.B, err = readBody(r, contentLength, maxBodySize, bodyBuf.B) ``` Will allocate the content length, so it suggested...
@guno1928 Can you try this one: ```go // appendBodyFixedSize reads exactly n bytes from r and appends them to dst. // // For bodies ≤ 64 KiB it behaves exactly...
@guno1928 I got one last option: ```go // appendBodyFixedSize reads exactly n bytes from r and appends them to dst. // // • 0 B allocated before we receive the...
Awesome 💪💪💪 @erikdubbelboer if it's good with you I can submit a PR
@guno1928 Can you try this one: ```go import ( "bufio" "io" "github.com/valyala/bytebufferpool" ) // appendBodyFixedSize reads exactly n bytes from r and appends them to dst. // // • 0...
@Av1shay The idea is that you create your storage connector being your app. If it cant talk to a database, it will panic. You can also use `NewFromConnection()` that doesnt...
@Av1shay We can't change the public interface at this point, its a massive breaking change for anyone using the storage driver if we do that, thus why I suggested the...
@ktx-vaidehi This will fix a limitation I run into almost every day. The filters using `AND` limits visualizations a lot.
Any progress on this? It has been open for 9 years. It would also be useful to be able to specify a pattern on which interfaces to capture from. For...
Is this a bug or a feature request?