111,120
社区成员
发帖
与我相关
我的任务
分享
Whilst ServiceStack v4 is a commercially-supported product, we also allow free usage for small projects and evaluation purposes.
The NuGet packages above include the quota's below which can be unlocked with a license key:
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

[/quote]
就这一处就可以了
ORM所引用用到的工程就这些。[/quote]
public static class FreeQuotas
{
public const int OrmLiteTables = 10;
public const int PremiumFeature = 0;
public const int RedisRequestPerHour = 6000;
public const int RedisTypes = 20;
public const int ServiceStackOperations = 10;
public const int TextTypes = 20;
public const int TypeFields = 20;
}
原来限制在这啊,哈哈,其实改变其中的数字也行,把数量改大些!嘿嘿,结贴
[/quote]

