From 3639e8585bfd4c5829d084d423a3c46aa9f68f00 Mon Sep 17 00:00:00 2001 From: Marko Zorec Date: Tue, 11 Jun 2019 08:48:28 +0200 Subject: [PATCH 1/2] Improve Readme.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2d5fee62..c291b26c 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ EasyCaching is an open source caching library that contains basic usages and som ### Step 1 : Install the package -Choose one kinds of caching type that you needs and install it via Nuget. +Choose one kind of caching provider that you need and install it via Nuget. ``` Install-Package EasyCaching.InMemory @@ -48,11 +48,11 @@ Install-Package EasyCaching.SQLite Install-Package EasyCaching.Memcached ``` -### Step 2 : Config in your Startup class +### Step 2 : Config your Startup class -Different types of caching hvae their own way to config. +Each caching provider has it's own configuration options. -Here is a sample show you how to config. +Here is a sample configuration for InMemory and Redis caching provider. ```csharp public class Startup @@ -137,7 +137,7 @@ public class ValuesController : Controller ## Documentation -For more helpful information about EasyCaching, please click [here](http://easycaching.readthedocs.io/en/latest/) for EasyCaching's documentation. +Detailed EasyCaching documentation can be found [here](http://easycaching.readthedocs.io/en/latest/). ## Extension Libs From cc014b8ef2a3878e26590d37dc57189395f6b48c Mon Sep 17 00:00:00 2001 From: Marko Zorec Date: Tue, 11 Jun 2019 09:11:06 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c291b26c..efd3239a 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ EasyCaching is an open source caching library that contains basic usages and som ### Step 1 : Install the package -Choose one kind of caching provider that you need and install it via Nuget. +Choose caching provider that you need and install it via Nuget. ``` Install-Package EasyCaching.InMemory @@ -48,7 +48,7 @@ Install-Package EasyCaching.SQLite Install-Package EasyCaching.Memcached ``` -### Step 2 : Config your Startup class +### Step 2 : Configure Startup class Each caching provider has it's own configuration options.