-
```
import (
"github.com/valyala/fasthttp"
)
var proxyClient = &fasthttp.HostClient{
Addr: "upstream.host:port",
// set other options here if required - most notably timeouts.
}
…
-
`
{"level":"error","ts":1662699205.19463,"caller":"biliroaming-go-server/main.go:289","msg":"socks connect tcp 127.0.0.1:7890->api.bilibili.com:443: dial tcp 127.0.0.1:7890: connect: connection refus…
-
huge reponse break the fasthttp reverse proxy....
* I will goto net/http. This problem can not be config right now...
* huge request is not a problem for reverse proxy. https://github.com/valyala/fa…
-
Hi, I really like your framework and I'm currently using it for my project. I really need a rate limiter to control the traffic, I found some libraries that support Fasthttp. But I don't really know h…
-
I have a very restrictive requirement
I need to support path likes
/foo
/foo/
**without** redirect from one form to the other ( in other words, the last trailing slash should be **ignored**…
-
# Description
Clearly describe the bug and how to reproduce it. If applicable, include screenshots.
INFO[2024-03-26 11:11:54] ----- Siglens server type SingleNode starting up -----
INFO[2024-03-2…
-
Benchmarking simple nil echo server to compare rsocket and http to see the overhead for small payloads to see how much can I squeeze out of rsocket.
For http I'm using fasthttp and it can do ~367…
-
Hi,
I am playing with the token "api" of the registry.
I voluntarily put an invalid token and I was surprised to have a panic.
**I am wondering if this is normal ?**
```
time="2019-01-18T2…
-
The implementation of contrib/valyala/fasthttp.v1 WrapHandler has a memory leak issue. We use this in our production system and it cause memory leak. After profiling and review the code we found the i…
-
[Fasthttp client](https://godoc.org/github.com/valyala/fasthttp#Client) has the following advantages comparing to net/http client:
- It is faster.
- Its' API allows both request and response objects' …