Reputation: 409
Someone can explain the difference about ServiceStack.Redis and StackExchange.Redis c# libraries?
Upvotes: 40
Views: 18058
Reputation: 13089
It's VERY important to notice that ServiceStack is a commercially-supported product. See the free-quotas on servicestack.net.
Also this question mentions the same.
The ServiceStack.Redis NuGet package include the following limitations:
If you exceed any of these limitations, you'll start receiving exceptions like:
The free-quota limit on '6000 Redis requests per hour' has been reached. Please see https://servicestack.net to upgrade to a commercial license.
Instead, StackExchange.Redis has no limitations and is under the MIT license.
Upvotes: 70