From 54f58a15d3ac2d1902eddbd26b16aae756ce0482 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Mon, 19 Nov 2018 12:29:26 +0000 Subject: [PATCH] update readme --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a5ae1122..0efacb35 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,8 @@ # Go Micro [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![GoDoc](https://godoc.org/github.com/micro/go-micro?status.svg)](https://godoc.org/github.com/micro/go-micro) [![Travis CI](https://api.travis-ci.org/micro/go-micro.svg?branch=master)](https://travis-ci.org/micro/go-micro) [![Go Report Card](https://goreportcard.com/badge/micro/go-micro)](https://goreportcard.com/report/github.com/micro/go-micro) -Go Micro is a pluggable RPC framework for distributed systems development. - -The **micro** philosophy is sane defaults with a pluggable architecture. We provide defaults to get you started quickly but everything can be easily swapped out. It comes with built in support for {json,proto}-rpc encoding, consul or multicast dns for service discovery, http for communication and random hashed client side load balancing. +Go Micro is a pluggable framework for microservice development. +The **micro** philosophy is sane defaults with a pluggable architecture. We provide defaults to get you started quickly but everything can be swapped out. Plugins are available at [github.com/micro/go-plugins](https://github.com/micro/go-plugins). Follow us on [Twitter](https://twitter.com/microhq) or join the [Slack](http://slack.micro.mu/) community. @@ -15,8 +14,8 @@ Go Micro abstracts away the details of distributed systems. Here are the main fe - **Service Discovery** - Automatic service registration and name resolution - **Load Balancing** - Client side load balancing built on discovery - **Message Encoding** - Dynamic encoding based on content-type with protobuf and json support -- **Sync Streaming** - RPC based communication with support for bidirectional streaming -- **Async Messaging** - Native PubSub messaging built in for event driven architectures +- **Sync Streaming** - RPC based request/response with support for bidirectional streaming +- **Async Messaging** - Native pubsub messaging built in for event driven architectures ## Getting Started