Erik Dubbelboer

Results 272 comments of Erik Dubbelboer

What if you send 10 requests per second? Some reasonable amount that a normal client could generate. Does it still happen? There shouldn't be any timeout that could cause that...

If it even happens at 10 requests per seconds than something else is wrong. Would you be willing to share your code with me so I can have a look...

@9mm what kind of examples would you like? The example @dgrr posted above is the basic Client usage.

Here is a simple example I just wrote that incorporates some of the ideas you will need to follow to get the most out of your server: https://gist.github.com/erikdubbelboer/fe4095419fca55e2c92b3d0432ccd7fc Keep in...

Either add them to the string of your URL yes or use [`fasthttp.URI`](https://godoc.org/github.com/valyala/fasthttp#URI). For example: https://play.golang.org/p/ExAvAg3PnzX

@vinhjaxt good find, it should be `client.Do` instead of `fasthttp.Do`. I have updated the gist.

I'm afraid I don't have a windows machine to try and test this on. @kirillDanshin do you?

Great research @niallnsec. I don't think we can just changed it to `tcp` from `tcp4`. This is a big change that might break people's code. I think that this issue...

You don't need to patch the lib code, just create your own listener using `tcp` and pass it to [`Server.Serve`](https://pkg.go.dev/github.com/valyala/fasthttp?utm_source=godoc#Server.Serve)