摘要: // EPEL的全称叫 Extra Packages for Enterprise Linux 。EPEL是由 Fedora 社区打造,为 RHEL 及衍生发行版如 CentOS、Scientific Linux 等提供高质量软件包的项目。装上了 EPEL之后,就相当于添加了一个第三方源。 1、yu 阅读全文
posted @ 2022-07-30 14:24 塔斯丁狗 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 文章参考自微软官方文档 地址:https://docs.microsoft.com/zh-cn/dotnet/standard/garbage-collection/workstation-server-gc GC回收模式的区别 工作站模式: 1、GC回收的线程等级与运行的NET程序的线程等级一致, 阅读全文
posted @ 2022-06-27 17:10 塔斯丁狗 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 文章参考自微软官方文档 地址:https://docs.microsoft.com/zh-cn/dotnet/standard/serialization/system-text-json-configure-options?pivots=dotnet-6-0 测试代码 1 using System 阅读全文
posted @ 2022-06-27 15:55 塔斯丁狗 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 测试代码: const int loopNum = 1 * 100000; var str1 = ""; var str2 = ""; var str3 = ""; var sw = new System.Diagnostics.Stopwatch(); // 1、ToString() 耗时 Tes 阅读全文
posted @ 2022-06-22 12:03 塔斯丁狗 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 原作者:吕毅 参考地址:https://blog.walterlv.com/post/create-delegate-to-improve-reflection-performance.html 文章内容提炼 1、其实当小数据量情况下,性能损失其实可以忽略不计。 文章内是以10000000循环来测试 阅读全文
posted @ 2022-06-14 15:32 塔斯丁狗 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 学习DispatchProxy实现动态代理及AOP时参考的文章,记录以备用 参考地址:https://devblogs.microsoft.com/dotnet/migrating-realproxy-usage-to-dispatchproxy/ DynamicProxy 参考地址:https:/ 阅读全文
posted @ 2022-03-07 22:41 塔斯丁狗 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 记录原因: 学习架构时关于动态程序集知识点不牢固,故查官方文档记录。 官方文档地址:https://docs.microsoft.com/zh-cn/dotnet/framework/reflection-and-codedom/how-to-define-a-generic-method-with 阅读全文
posted @ 2022-02-21 12:30 塔斯丁狗 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 因业务需要,最近搭建的定时任务必须跑在win服务器上,所以没得办法必须得把项目转为服务,以前我记得是需要第三方组件实现转换的。 现在NET6提供了解决方案,通过几行代码即可实现win服务。 1、首先参考官方文档 // 官方文档 https://docs.microsoft.com/en-us/asp 阅读全文
posted @ 2021-12-20 11:02 塔斯丁狗 阅读(2060) 评论(0) 推荐(0) 编辑
摘要: 1、首先安装Jenkins 1、安装JavaOpenJDK : yum -y install java-1.8.0-openjdk2、安装Jenkins 参考:https://www.cnblogs.com/loveyouyou616/p/8714544.html 2、安装Docker 1、安装Do 阅读全文
posted @ 2021-09-02 18:32 塔斯丁狗 阅读(172) 评论(0) 推荐(0) 编辑
摘要: /* * 把数字金额转换成中文大写数字的函数(可处理负值) */ function changeNumMoneyToChinese(money) { var cnNums = new Array("零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"); / 阅读全文
posted @ 2021-06-29 16:18 塔斯丁狗 阅读(270) 评论(0) 推荐(0) 编辑