Go 语言极速 web 框架 IRIS V4.1.1 发布了,更新如下:
4.0.0 -> 4.1.1
NEW FEATURE: Basic remote control through SSH, example here
NEW FEATURE: Optionally OnError foreach Party (by prefix, use it with your own risk), example here
NEW: iris.Config.Sessions.CookieLength, You're able to customize the length of each sessionid's cookie's value. Default (and previous' implementation) is 32.
FIX: Websocket panic on non-websocket connection*
FIX: Multi websocket servers client-side source route panic*
Better gzip response managment
v4.1.1
History
How to upgrade:remove your $GOPATH/src/github.com/kataras/iris folder, open your command-line and execute this command: go get -u github.com/kataras/iris/iris.
Golang目前已经发展成为非常广泛使用的开发语言,如果你开发WEB、后台服务、API,都可以用到golang。
原先我们用go来开发基于web的应用时,一般会用到net/http包,然后在代码中处理大量相同的事情,如:路由、鉴权等。
现在通过Iris-Go,可以方便的帮助你来开发基于web的应用。