gitee.com/liuxuezhan/go-micro-v1.18.0@v1.0.0/README.md (about) 1 # Go Micro [](https://opensource.org/licenses/Apache-2.0) [](https://godoc.org/gitee.com/liuxuezhan/go-micro-v1.18.0) [](https://travis-ci.org/micro/go-micro) [](https://goreportcard.com/report/gitee.com/liuxuezhan/go-micro-v1.18.0) 2 3 Go Micro is a framework for microservice development. 4 5 ## Overview 6 7 Go Micro provides the core requirements for distributed systems development including RPC and Event driven communication. 8 The **micro** philosophy is sane defaults with a pluggable architecture. We provide defaults to get you started quickly 9 but everything can be easily swapped out. 10 11 <img src="https://micro.mu/docs/images/go-micro.svg" /> 12 13 Plugins are available at [github.com/micro/go-plugins](https://github.com/micro/go-plugins). 14 15 Follow us on [Twitter](https://twitter.com/microhq) or join the [Slack](https://micro.mu/slack) community. 16 17 ## Features 18 19 Go Micro abstracts away the details of distributed systems. Here are the main features. 20 21 - **Service Discovery** - Automatic service registration and name resolution. Service discovery is at the core of micro service 22 development. When service A needs to speak to service B it needs the location of that service. The default discovery mechanism is 23 multicast DNS (mdns), a zeroconf system. 24 25 - **Load Balancing** - Client side load balancing built on service discovery. Once we have the addresses of any number of instances 26 of a service we now need a way to decide which node to route to. We use random hashed load balancing to provide even distribution 27 across the services and retry a different node if there's a problem. 28 29 - **Message Encoding** - Dynamic message encoding based on content-type. The client and server will use codecs along with content-type 30 to seamlessly encode and decode Go types for you. Any variety of messages could be encoded and sent from different clients. The client 31 and server handle this by default. This includes protobuf and json by default. 32 33 - **Request/Response** - RPC based request/response with support for bidirectional streaming. We provide an abstraction for synchronous 34 communication. A request made to a service will be automatically resolved, load balanced, dialled and streamed. The default 35 transport is http/1.1 or http2 when tls is enabled. 36 37 - **Async Messaging** - PubSub is built in as a first class citizen for asynchronous communication and event driven architectures. 38 Event notifications are a core pattern in micro service development. The default messaging is point-to-point http/1.1 or http2 when tls 39 is enabled. 40 41 - **Pluggable Interfaces** - Go Micro makes use of Go interfaces for each distributed system abstraction. Because of this these interfaces 42 are pluggable and allows Go Micro to be runtime agnostic. You can plugin any underlying technology. Find plugins in 43 [github.com/micro/go-plugins](https://github.com/micro/go-plugins). 44 45 ## Getting Started 46 47 See the [docs](https://micro.mu/docs/framework.html) for detailed information on the architecture, installation and use of go-micro. 48