Alternative to servicestack.redis [closed]

一世执手 提交于 2019-11-30 07:50:01

We are migrating to Booksleeve, which was developed by the people who have built StackOverflow itself. So far we had very good experiences.

The money is not the issue (the cost of migration is higher than paying for the license), we're doing it because we just don't want to enter a business relationship with company with sketchy practices like this.

(And no, we didn't accept any license or anything, all we did was a git pull from GitHub.)

I am going with StackExchange.Redis which was based upon the Booksleve by Stack Exchange folks for very high performance needs. Seems good enough and with an active community.

Their license is MIT which basically means you just need to include their copyright & license into your product. (Fair enough)

ServiceStack, including packages such as ServiceStack.Redis, are becoming commercially supported products in version 4. You probably have been using version 3.x of the ServiceStack packages, and NuGet decided to update you to 4.x.

There are limits for free usage of the v4 libraries. See this announcement for more info. Version 3.x of all ServiceStack products remain open-source; there is a new GitHub project with information about v3 support.

For now, I would suggest undoing the package update and setting the max version to 3.x in your NuGet package config file, so that your NuGet packages remain at version 3.x for production code in the short term:

<package id="ServiceStack.Xyz" version="3.x.x" allowedVersions="[3,4)" />

Then it should be safe to use NuGet to update your packages.

Meanwhile, you can visit https://servicestack.net to evaluate your options for upgrading to version 4, licensing choices, or whether to stick with v3.

I was really sad to hear that SS would be commercial from V4, it made me a little bit angry but...anyway they need to keep their life I think. So I moved to "https://code.google.com/p/booksleeve/" totally without complain.

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