Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 caching provider that you need and install it via Nuget.

```
Install-Package EasyCaching.InMemory
Expand All @@ -48,11 +48,11 @@ Install-Package EasyCaching.SQLite
Install-Package EasyCaching.Memcached
```

### Step 2 : Config in your Startup class
### Step 2 : Configure 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
Expand Down Expand Up @@ -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

Expand Down