Hao Tu

Results 16 comments of Hao Tu

This doesn't seem to affect normal use. The master branch of iris still relies on the v1.11.7 `github.com/klauspost/compress`

maybe you can have a try `go get github.com/kataras/iris/v12@master`

![image](https://user-images.githubusercontent.com/26807520/115582835-e953b400-a2fb-11eb-9dfe-5cfca829a685.png) try `go get -u github.com/kataras/iris/v12@master`

@sado0823 ```go func TimeoutHandler(duration time.Duration) iris.Handler { return func(ctx iris.Context) { if duration

@sado0823 looks nice!

@sado0823 your code can't stopped the current running handler too ๐Ÿ˜ž @kataras it seems no way to stop it, right๏ผŸ

it works with below code ```go app.Get("/mapping/{name}/{dir}", func(ctx iris.Context) { app.HandleDir("/static/" + ctx.Params().Get("name"), iris.Dir("../" + ctx.Params().Get("dir")), iris.DirOptions{ ShowList: true, SPA: false, }) app.RefreshRouter() ctx.Text("OK") }) ``` another question is: how...

@kataras Do you have time to look at my questions? ๐Ÿ˜ƒ

@kataras now I need a function like `RemoveRoute(path string)` ๐Ÿ˜„

[https://www.threeaccents.com/posts/handling-large-file-uploads-in-go](https://www.threeaccents.com/posts/handling-large-file-uploads-in-go) may be helpful for you @flykarry