Microservice alternatives and similar packages
Based on the "Web Frameworks" category.
Alternatively, view Microservice alternatives based on common mentions on social networks and blogs.
-
Gin
Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin. -
Gorilla WebSocket
DISCONTINUED. A fast, well-tested and widely used WebSocket implementation for Go. -
Iris
The fastest HTTP/2 Go Web Framework. New, modern and easy to learn. Fast development with Code you control. Unbeatable cost-performance ratio :rocket: -
GoFrame
GoFrame is a modular, powerful, high-performance and enterprise-class application development framework of Golang. -
goa
🌟 Goa: Elevate Go API development! 🚀 Streamlined design, automatic code generation, and seamless HTTP/gRPC support. ✨ -
Faygo
Faygo is a fast and concise Go Web framework that can be used to develop high-performance web app(especially API) with fewer codes. Just define a struct handler, faygo will automatically bind/verify the request parameters and generate the online API doc. -
Huma
A modern, simple, fast & flexible micro framework for building HTTP REST/RPC APIs in Go backed by OpenAPI 3 and JSON Schema. -
GoFr
An opinionated GoLang framework for accelerated microservice development. Built in support for databases and observability. -
go-server-timing
DISCONTINUED. Go (golang) library for creating and consuming HTTP Server-Timing headers
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of Microservice or a related project?
README
Microservice
The framework for the creation of microservices, written in Golang. (note: http microservice)
Architecture microservice includes:
- handle
- tuner (configuration)
- middleware-style tools (for demo)
Create a new Middleware
Use as a example tools/metric.go file.
Creating a new handler
To do this, you just need to create a new public method in the handler, which takes input http.ResponseWriter, http.Request. Look created to demonstrate the method HelloWorld.
Perfomance
For a general understanding of what is the speed of microservice using the proposed architecture will be high, and bring the benchmark results obtained by me on my computer:
- BenchmarkMain-2 10000000 192 ns/op
- BenchmarkMainParallel-2 10000000 104 ns/op
Tuner
The default configuration file:
config.toml
Specify in the command line another file:
yourservice -confile other.toml
To change the setting on the command line, you specify the section and parameter name (composed by a slash):
yourservice -Main/Port 85
Configuring priorities:
- command line (highest priority)
- environment
- configuration file
Dependencies
- Logger https://github.com/Sirupsen/logrus
- Route https://github.com/claygod/Bxog
- Config https://github.com/BurntSushi/toml
Any of these libraries can be replaced or supplemented, in this case, they are likely designed to show which way to develop their own microservices. You might also be useful to connect logstash and influxdb.
Conclusion
Microservice Library does not claim the laurels of the only true solution, but on occasion, I hope, will help you create your own micro-architecture of the service, becoming the prototype for future applications.
Copyright © 2017-2019 Eduard Sesigin. All rights reserved. Contacts: [email protected]