ServiceStack V3 版本 免费 redis的操作类

Referencing v3 packages in New Projects

If you want a new project to use ServiceStack's v3 packages then you need to specify the version number when installing via NuGet, e.g:


All v3 packages can be installed the same way, e.g install ServiceStack.Text and ServiceStack.Redis with:

PM> Install-Package ServiceStack.Text -Version 3.9.71    --这个先安装
Install-Package ServiceStack -Version 3.9.71


每次都需要释放资源 ,redis 是单线程
 
PM> Install-Package ServiceStack.Redis -Version 3.9.71
PM> Install-Package ServiceStack -Version 3.9.71
 ConfigurationOptions 配置类 
原文地址:https://www.cnblogs.com/zxs-onestar/p/6149473.html