fasthttp icon indicating copy to clipboard operation
fasthttp copied to clipboard

Fast HTTP package for Go. Tuned for high performance. Zero memory allocations in hot paths. Up to 10x faster than net/http

Results 152 fasthttp issues
Sort by recently updated
recently updated
newest added

https://github.com/valyala/fasthttp/issues/974 - Add `func FSEmbedHandler(fs embed.FS) RequestHandler {}` - Support compress? Is the cache in memory? - Support ByteRange? Will anyone put large files in embed.FS? - Support generate index...

Hi , how do we setup instana in fasthttp framework, right now we added using opentracing , looks like it is not working as expected .

help wanted

Hi, I have an issue with the `HeaderReceived`. https://github.com/valyala/fasthttp/blob/af94725d117b19e761d0c6e9c1b157516c482a71/server.go#L2187-L2197 While `maxRequestBodySize` is modified by `HeaderReceived`,in the current connection, it keeps the current value until the next modification. This causes the...

bug
pending/submitter-response

this change properly add the adaptor ResponseWriter the capability of Hijacker. and so it will address issues (#946 and #87) , and maybe others I am not aware of

I want to use `Response.SetBodyRaw()`, but I need to know when it's safe to deallocate the buffer. I'm writing a cache server and doing memory management manually. Would you be...

I noticed that a request with method `HEAD` successfully gets sent to the server, but the server response isn't returned by the fasthttp client. Hence the `Do` method gets stuck,...

pending/submitter-response

Hello, I found another bug security on windows. example - `curl http://localhost:8081/api/\../\../\../\../\../\../\../\../windows/win.ini -k` SOLUTION file **strings.go** ```golang var ( ... strBackSlashDotDotSlash = []byte(`\../`) ... ) ``` file **uri.go** ```golang func...

Hello Few days ago I find this tweet about fasthttp and go-fiber: https://twitter.com/davidnix_/status/1720454052973044188?s=48 I try to contact davidnix_ to find more information about this, since I use fasthttp on my...

Hello, currently fasthttp supports gzip and brotli as encoding when serving compressed content. It also supports them for `fasthttp.fs`. It would be very beneficial to add support for `zstd` whicb...

help wanted
feature request

As a side effect of how fasthttp handles custom headers, retaining the order of entries is already possible for most headers specified, however - and this is problematic for very...