update to rc2

This commit is contained in:
Tommy Parnell
2016-06-10 20:59:18 -04:00
parent a0075427fe
commit f129025596
31 changed files with 6880 additions and 22919 deletions

View File

@@ -1,4 +1,19 @@
# AspNetCache-AzureTableStorage
Use azure table storage for AspNet 5 Distributed Cache.
Use azure table storage for AspNet core 1.0 Distributed Cache.
Azure Table Storage is a very cheap, super fast key value store, and its much cheaper than the redis cluster in azure. This is not a true replacement for redis, and redis should be used if people have money, but this is designed to get people a very cheap cache in azure.
Azure Table Storage is a very cheap, super fast key value store, and its much cheaper than the redis cluster in azure. This is not a true replacement for redis, and redis should be used if people have money, but this is designed to get people a very cheap cache in azure.
## How to use
install-package `AzureTableStorageCache`
In your startup.cs
```csharp
services.AddAzureTableStorageCache("!!!CONNECTIONSTRINGHERE!!!", "tablename", "cachedDataKey");
```