内容简介:gearboxIn
gearbox
In gearbox , we care about peformance and memory which will be used by each method while building things up and how we can improve that. It also takes more time to research about each component that will be used and compare it with different implementations of other open source web frameworks. It may end up writing our own components in an optimized way to achieve our goals
gearbox seeks to be
- Secure
:closed_lock_with_key: - Fast
:rocket: - Simple
:eyeglasses: - Easy to use
- Lightweight
Supported Go versions & installation
1.11 or higher of Go ( Download Go )
Just use go get to download and install gearbox
go get -u github.com/abahmed/gearbox
Example
package main
import (
"github.com/abahmed/gearbox"
"github.com/valyala/fasthttp"
)
func main() {
// Setup gearbox
gearbox := gearbox.New()
// Define your handlers
gearbox.Get("/hello", func(ctx *fasthttp.RequestCtx) {
ctx.Response.SetBodyString("Hello World!")
})
// Start service
gearbox.Start(":3000")
}
Contribute & Support
Check Our Wiki for more information about gearbox and how to contribute
Contributors
Get in touch!
Feel free to Join us on Gitter , or email us at gearbox@googlegroups.com if you have questions, or suggestions
License
gearbox is licensed under MIT License
Logo is created by Mahmoud Sayed and distributed under Creative Commons License
Third-party library licenses
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
21天学通C语言
(美国)琼斯(Bradley L.Jones) (美国)埃特肯(Peter Aitken) / 信达工作室 / 人民邮电出版社 / 2012-8 / 69.00元
《21天学通C语言(第6版•修订版)》是初学者学习C语言的经典教程。本版按最新的标准(ISO∕IEC:9899-1999),以循序渐进的方式介绍了C语言编程方面知识,并提供了丰富的实例和大量的练习。通过学习实例,并将所学的知识用于完成练习,读者将逐步了解、熟悉并精通C语言。《21天学通C语言(第6版•修订版)》包括四周的课程。第一周的课程介绍了C语言程序的基本元素,包括变量、常量、语句、表达式、函......一起来看看 《21天学通C语言》 这本书的介绍吧!