1.Github项目地址:https://github.com/inimble/wordcount.git 2.估算耗费的时间(如右表) PSP2.1 Personal Software Process Stages 预估耗时(分钟) 实际耗时(分钟) Planning 计划 30 10 · Est ...
分类:
其他好文 时间:
2020-03-23 09:31:49
阅读次数:
73
Problem Statement There is a cave consisting of NN rooms and MM one-directional passages. The rooms are numbered 11 through NN . Takahashi is now in R ...
分类:
其他好文 时间:
2020-03-22 17:58:40
阅读次数:
79
以下为MS SQLSERVER慢查询排查方法: SqlServer 使用sys.dm_exec_query_stats查看开销较高的语句 SELECT TOP 10 total_worker_time / 1000 AS [自编译以来执行所用的CPU时间总量(ms)], total_elapsed_ ...
分类:
数据库 时间:
2020-03-22 15:34:58
阅读次数:
96
一、项目地址 + 教学班级:006 项目地址:https://github.com/Knowden/IntersectionPlus.git 二、开发耗时评估 | PSP2.1 | Personal Software Process Stages | 预估耗时(分钟) | 实际耗时(分钟) | | ...
分类:
其他好文 时间:
2020-03-22 15:33:30
阅读次数:
54
Druid连接池 连接池技术 连接池技术预先建立多个数据库连接对象,然后将连接对象保存到连接池中。当客户请求到来时,从池中取出一个连接对象为客户服务,当请求完成后,客户程序调用close()方法,将连接对象放回池中 HiKaricp:速度比较快; TomCat-jdbc、c3p0、proxoll、b ...
分类:
数据库 时间:
2020-03-21 23:47:47
阅读次数:
365
1、 使用控件属性作为判断条件: 1 …… 2 if RadioButton2.Checked then 3 begin 4 Statement := this.Replace( Statement,'varchar','varchar2' ); 5 Statement := this.Replac ...
分类:
其他好文 时间:
2020-03-21 16:21:43
阅读次数:
75
今天在看项目源码时看到<router-link to="/personal/coll" exact>,对exact的用法很好奇,特意查了下。 也就是说设置exact后会精准匹配链接跳转 更多关于<router-link>相关知识点可以查看该链接https://www.jianshu.com/p/9f ...
分类:
其他好文 时间:
2020-03-21 14:40:58
阅读次数:
53
下载rpm包 对repo进行安装 进入 目录 查看是否有 和 文件 安装 启动 查看是否启动 生成临时密码 进入mysql 报警告信息 如何排除警告信息 关闭服务 启动服务 登录你的mysql 至此 你的mysql5.7的版本搭建完成 ...
分类:
数据库 时间:
2020-03-20 13:00:11
阅读次数:
869
前三题随便写,D题是一道dfs的水题,但当时没有找到规律,直接卡到结束 A - Kth Term / Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement Print the KK-th e ...
分类:
其他好文 时间:
2020-03-18 20:19:45
阅读次数:
68
一、前言 在当今的各种系统中,缓存是对系统性能优化的重要手段。MySQL Query Cache(MySQL查询缓存)在MySQL Server中是默认打开的,但是网上各种资料以及有经验的DBA都建议生产环境中把MySQL Query Cache关闭。按道理,MySQL Server默认打开,是鼓励 ...
分类:
数据库 时间:
2020-03-18 17:09:38
阅读次数:
66