第一章 gin简介

gin  使用go编写的高性能的HTTP Web框架。它具有和Martini类似的API,但是性能却比Martini要高40倍。这是因为gin使用了Httprouter路由框架。

gin 的官网:https://gin-gonic.com

github: https://github.com/gin-gonic/gin

gin特性

  • 快速

  • 支持中间件

  • crash处理

  • JSON验证

  • 路由组

  • 错误管理

  • 内置管理

  • 可扩展性

 in的用户有哪些?

  • gorush:Go 编写的通知推送服务器。
  • fnproject:原生容器,云 serverless 平台。
  • photoprism:由 Go 和 Google TensorFlow 提供支持的个人照片管理工具。
  • picfit:Go 编写的图像尺寸调整服务器。
  • gotify:使用实时 web socket 做消息收发的简单服务器。
  • cds:企业级持续交付和 DevOps 自动化开源平台。

转载于:https://my.oschina.net/isxiaoge/blog/3060220

你可能感兴趣的:(devops,json,serverless)