Difference between StackExchange.Redis and ServiceStack.Redis

大兔子大兔子 提交于 2019-11-27 15:39:43

问题


Someone can explain the difference about ServiceStack.Redis and StackExchange.Redis c# libraries?


回答1:


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:

  • 10 Operations in ServiceStack (i.e. Request DTOs)
  • 10 Tables in OrmLite
  • 20 Different Types in JSON, JSV and CSV Serializers *
  • 20 Different Types in Redis Client Typed APIs
  • 6000 requests per hour with the Redis Client

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.



来源:https://stackoverflow.com/questions/33103441/difference-between-stackexchange-redis-and-servicestack-redis

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!