上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页
摘要: .NETCORE项目源码: https://github.com/dotnet/aspnetcore 引用及基本类型在线源码:https://referencesource.microsoft.com/#mscorlib 下载完.NETCORE源码,先restore下 阅读全文
posted @ 2022-12-02 11:31 PrintY 阅读(261) 评论(0) 推荐(0)
摘要: 异常:程序在运行期间发生的错误。异常对象就是封装这些错误的对象。 try{}catch{}是非常重要的,捕获try程序块中所有发生的异常,如果没有捕获异常的话,程序运行的线程将会挂掉,更严重的是这些错误有可能会直接抛给用户,让用户看到。所以说在程序的最外层必须要有捕获异常的程序。这样至少确保程序的正 阅读全文
posted @ 2022-12-02 09:56 PrintY 阅读(262) 评论(0) 推荐(0)
摘要: # Git提交代码 #参考:https://gitee.com/help/articles/4114#article-header0 #进入项目文件夹,初始化一个Git仓库 git init #加入当前目录下所有文件放入临时状态/暂存区(Staging),可以使用如下命令 git add . #查看 阅读全文
posted @ 2022-12-01 16:30 PrintY 阅读(174) 评论(0) 推荐(0)
摘要: 未完待续~ 阅读全文
posted @ 2022-11-22 11:21 PrintY 阅读(150) 评论(0) 推荐(0)
摘要: 引用GitHub上的原话:nvm allows you to quickly install and use different versions of node via the command line. 1、下载nvm https://github.com/coreybutler/nvm-win 阅读全文
posted @ 2022-11-15 13:39 PrintY 阅读(396) 评论(0) 推荐(0)
摘要: https://mirrors.aliyun.com/centos/7.9.2009/isos/x86_64/ 阅读全文
posted @ 2022-11-08 09:11 PrintY 阅读(6135) 评论(0) 推荐(0)
摘要: 1、准备工作 服务器:CentOS 7.9(2vCPU 4GiB)(安装好docker)- 阿里云服务器 三台服务器:rancher、master、node rancher服务器拉取rancher镜像 docker pull rancher/rancher:v2.5.7 2、安装rancher mk 阅读全文
posted @ 2022-09-28 16:45 PrintY 阅读(411) 评论(0) 推荐(0)
摘要: Explain简介 本文主要讲述如何通过 explain 命令获取 select 语句的执行计划,通过 explain 我们可以知道以下信息:表的读取顺序,数据读取操作的类型,哪些索引可以使用,哪些索引实际使用了,表之间的引用,每张表有多少行被优化器查询等信息。 下面是使用 explain 的例子: 阅读全文
posted @ 2022-09-18 10:36 PrintY 阅读(56) 评论(0) 推荐(0)
摘要: 当前版本:v 7.10.1 1、创建索引模式 2、查看数据 阅读全文
posted @ 2022-09-10 09:23 PrintY 阅读(231) 评论(0) 推荐(0)
摘要: Grafana版本v8.3.3 1、绑定数据源 2、创建table 3、导出数据 参考:https://www.cnblogs.com/cndarren/p/16009775.html 阅读全文
posted @ 2022-09-09 10:41 PrintY 阅读(189) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页