From ddb51529a7a723f8ab27fe42c7fb0317b1c05ae1 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sun, 31 May 2020 11:26:18 +0100 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 97facad9..2fc4604f 100644 --- a/README.md +++ b/README.md @@ -35,12 +35,15 @@ transport is [gRPC](https://grpc.io/). - **Async Messaging** - PubSub is built in as a first class citizen for asynchronous communication and event driven architectures. Event notifications are a core pattern in micro service development. The default messaging system is a HTTP event message broker. +- **Authentication** - Auth is built in as a first class citizen. Authentication and authorization enable secure +zero trust networking by providing every service an identity and certificates. This additionally includes rule +based access control. + - **Dynamic Config** - Load and hot reload dynamic config from anywhere. The config interface provides a way to load application level config from any source such as env vars, file, etcd. You can merge the sources and even define fallbacks. - **Data Storage** - A simple data store interface to read, write and delete records. It includes support for memory, file and -CockroachDB by default. State and persistence becomes a core requirement beyond prototyping and Micro looks to build that into the -framework. +CockroachDB by default. State and persistence becomes a core requirement beyond prototyping and Micro looks to build that into the framework. - **Synchronization** - Distributed systems are often built in an eventually consistent manner. Support for distributed locking and leadership are built in as a Sync interface. When using an eventually consistent database or scheduling use the Sync interface.