File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -197,6 +197,28 @@ Redis实现ICache接口,它的孪生兄弟MemoryCache,内存缓存,千万
197
197
各应用强烈建议使用ICache 接口编码设计,小数据时使用MemoryCache 实现;
198
198
数据增大(10 万)以后,改用Redis 实现,不需要修改业务代码。
199
199
200
+ ## 快速拥有
201
+
202
+ 使用NewLife 组件的最简便方式是从Nuget 引用,例如在项目Nuget 管理中搜索`NewLife .Redis ` 并引入。
203
+
204
+ NewLife 组件由社区共创20 多年,使用MIT 开源协议,** 任何人可任意修改并再次发行** (无需声明来源)!许多企业基于此构建内部开发框架时,甚至可通过批量替换源码中所有`NewLife `字符串为贵公司名实现私有化定制。
205
+
206
+ 团队始终秉承开放态度,不仅支持VisualStudio (最新正式版)打开解决方案编译,也兼容`dotnet build `命令行编译,项目文件摒弃复杂功能以追求简单易用,真正做到开箱即用。
207
+
208
+ 我们公开强命名证书`newlife .snk `以支持独自编译替换程序集。
209
+
210
+
211
+
212
+ 命令行中运行以下命令快速体验NewLife 组件:
213
+
214
+ ```
215
+ dotnet new install NewLife .Templates
216
+ dotnet new nconsole -- name test
217
+ cd test
218
+ dotnet run
219
+ ```
220
+
221
+
200
222
## 新生命项目矩阵
201
223
各项目默认支持net9 .0 / netstandard2 .1 / netstandard2 .0 / net4 .62 / net4 .5 ,旧版(2024 . 0801 )支持net4 .0 / net2 .0
202
224
You can’t perform that action at this time.
0 commit comments