update readme

This commit is contained in:
Asim Aslam 2018-11-27 19:46:00 +00:00
parent bc404c9a82
commit 16e97cce9b

View File

@ -16,21 +16,11 @@ Follow us on [Twitter](https://twitter.com/microhq) or join the [Slack](http://s
Go Micro abstracts away the details of distributed systems. Here are the main features. Go Micro abstracts away the details of distributed systems. Here are the main features.
- **Service Discovery** - Automatic service registration and name resolution - **Service Discovery** - Automatic service registration and name resolution (default: consul or mdns)
- **Load Balancing** - Client side load balancing built on discovery - **Load Balancing** - Client side load balancing built on discovery (default: random hashed)
- **Message Encoding** - Dynamic encoding based on content-type with protobuf and json support - **Message Encoding** - Dynamic encoding based on content-type (default: protobuf and json-rpc)
- **Sync Streaming** - RPC based request/response with support for bidirectional streaming - **Sync Streaming** - RPC based request/response with support for bidirectional streaming (default: http/1.1 and http2)
- **Async Messaging** - Native pubsub messaging built in for event driven architectures - **Async Messaging** - Native pubsub messaging built in for event driven architectures (default: point to point http)
## Defaults
We provide simple defaults to get you started.
- Service Discovery - consul or mdns
- Load Balancing - client side random hashed
- Message Encoding - protobuf and json-rpc
- Request/Response - http and http2
- PubSub Messaging - point to point http
## Getting Started ## Getting Started