首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >go之web框架 iris

go之web框架 iris

原创
作者头像
IT工作者
发布2022-06-30 17:09:55
发布2022-06-30 17:09:55
75000
代码可运行
举报
文章被收录于专栏:程序技术知识程序技术知识
运行总次数:0
代码可运行

最近开始学习GO的WEB框架,IRIS号称是Go最快的后端Web框架,目前发展最快的Go Web框架。提供完整的MVC功能并且面向未来。

所以先从它开始。

github地址

https://github.com/kataras/iris

文档

https://docs.iris-go.com/

安装

go get -u github.com/kataras/iris

编辑main.go

代码语言:javascript
代码运行次数:0
运行
复制
package main

   import "github.com/kataras/iris"

   func main() {
     app := iris.Default()

     // Method:   GET
     // Resource: http://localhost:8080/
     app.Handle("GET", "/", func(ctx iris.Context) {
       ctx.HTML("Hello world!")
     })

     // same as app.Handle("GET", "/ping", [...])
     // Method:   GET
     // Resource: http://localhost:8080/ping
     app.Get("/ping", func(ctx iris.Context) {
       ctx.WriteString("pong")
     })

     // Method:   GET
     // Resource: http://localhost:8080/hello
     app.Get("/hello", func(ctx iris.Context) {
       ctx.JSON(iris.Map{"message": "Hello iris web framework."})
     })

     // http://localhost:8080
     // http://localhost:8080/ping
     // http://localhost:8080/hello
     app.Run(iris.Addr(":8080"))
   }

运行

go run main.go

新打开个窗口执行

curl http://localhost:8080

结果 Hello world!

或在浏览器 访问http://localhost:8080

测试

现在对它进行简单压力测试

系统配置 1核 1G内存 , 操作系统:CentOS 7.4 64位

ab -n 10000 -c 1000 http://localhost:8080/

#结果

This is ApacheBench, Version 2.3 <$Revision: 1430300 $>

Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/

Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking localhost (be patient)

Completed 1000 requests

Completed 2000 requests

Completed 3000 requests

Completed 4000 requests

Completed 5000 requests

Completed 6000 requests

Completed 7000 requests

Completed 8000 requests

Completed 9000 requests

Completed 10000 requests

Finished 10000 requests

Server Software:

Server Hostname: localhost

Server Port: 8080

Document Path: /

Document Length: 12 bytes

Concurrency Level: 1000

Time taken for tests: 3.102 seconds

Complete requests: 10000

Failed requests: 0

Write errors: 0

Total transferred: 1280000 bytes

HTML transferred: 120000 bytes

Requests per second: 3223.45 [#/sec] (mean)

Time per request: 310.227 [ms] (mean)

Time per request: 0.310 [ms] (mean, across all concurrent requests)

Transfer rate: 402.93 [Kbytes/sec] received

Connection Times (ms)

min mean[+/-sd] median max

Connect: 0 168 383.5 2 3013

Processing: 8 138 325.4 23 2005

Waiting: 1 137 325.5 22 2002

Total: 8 306 625.5 26 3067

Percentage of the requests served within a certain time (ms)

50% 26

66% 34

75% 59

80% 90

90% 1480

95% 1748

98% 1925

99% 3014

100% 3067 (longest request)

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档