From e84e5ae3030aaee5b32b4dd252e66920810c9ab4 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Fri, 6 Jan 2017 20:06:58 +0000 Subject: [PATCH] make features a bullet list --- README.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index fc4d7ed5..03f28d91 100644 --- a/README.md +++ b/README.md @@ -13,17 +13,12 @@ check out the [Mailing List](https://groups.google.com/forum/#!forum/microhq). Go Micro abstracts way the details of distributed systems. Here are the main features. -**Service Discovery** - Applications are automatically registered with service discovery so they can find each other. - -**Load Balancing** - Smart client side load balancing is used to balance requests between instances of a service. - -**Synchronous Communication** - Request-response is provided as a bidirectional streaming transport layer. - -**Asynchronous Communication** - Microservices should promote an event driven architecture. Publish and Subscribe semantics are built in. - -**Message Encoding** - Micro services can encode requests in a number of encoding formats and seamlessly decode based on the Content-Type header. - -**RPC Client/Server** - The client and server leverage the above features and provide a clean simple interface for building microservices. +- **Service Discovery** - Applications are automatically registered with service discovery so they can find each other. +- **Load Balancing** - Smart client side load balancing is used to balance requests between instances of a service. +- **Synchronous Communication** - Request-response is provided as a bidirectional streaming transport layer. +- **Asynchronous Communication** - Microservices should promote an event driven architecture. Publish and Subscribe semantics are built in. +- **Message Encoding** - Micro services can encode requests in a number of encoding formats and seamlessly decode based on the Content-Type header. +- **RPC Client/Server** - The client and server leverage the above features and provide a clean simple interface for building microservices. ## Learn By Example