Given any string of N (≥) characters, you are asked to form the characters into the shape of U. For example, helloworld can be printed as: h d e l l r ...
分类:
其他好文 时间:
2020-05-17 01:18:46
阅读次数:
53
数据库配置文件优化 硬件:内存32G innodb_file_per_table = 1 # 打开独立表空间 max_connections = 8000 # MySQL 服务所允许的同时会话数的上限,经常出现Too Many Connections的错误提示,则需要增大此值 back_log = ...
分类:
数据库 时间:
2020-05-16 19:08:10
阅读次数:
71
前两天硬着头皮在部门内部做了一次技术分享,主题如题。索性整理成文章留个纪念! 要了解异步实现,首先我们得先了解: 同步 & 异步 同步:会逐行执行代码,会对后续代码造成阻塞,直至代码接收到预期的结果之后,才会继续向下执行任务。 异步:调用之后先不管结果,继续向下执行任务。 网上各种文章对同步和异步的 ...
分类:
编程语言 时间:
2020-05-16 16:54:15
阅读次数:
97
Design a data structure that supports the following two operations: void addWord(word) bool search(word) search(word) can search a literal word or a r ...
分类:
其他好文 时间:
2020-05-16 10:40:41
阅读次数:
67
简介 DNS的出现及演变 网络出现的早期是使用 IP 地址进行通信. 那时就几台主机通信. 但是随着接入网络主机的增多.这种数字表示的地址非常不便于记忆, UNIX 上就出现了建立一个叫做 hosts 的文件(Linux 和 Windows 也继承保留了这个文件). 这个文件中记录着主机名称和 IP ...
分类:
其他好文 时间:
2020-05-15 15:28:11
阅读次数:
79
[toc] Entity && ViewModel Entities 实体模型 Company.cs 公司实体类 Employee.cs 公司职员实体类 Gender 性别枚举类型 Models Dto(ViewModel) CompanyDto 实体类代码 Company Employee + G ...
分类:
移动开发 时间:
2020-05-15 00:08:26
阅读次数:
87
禁止PC3通过80端口访问web服务 Router(config) access list 100 deny tcp 192.168.3.0 0.0.0.255 192.168.5.2 0.0.0.0 eq 80 Router(config) access list 100 permit ip an ...
分类:
Web程序 时间:
2020-05-14 22:41:32
阅读次数:
203
返回一个新数组,如果想返回一个数组,则第二个参数为[], 想返回字符串,则第二个参数为'' const keyMaterialList = oldArr && oldArr.reduce((newArray: any, item: any) => { item.key = item.id; newA ...
分类:
其他好文 时间:
2020-05-14 19:47:52
阅读次数:
81
聊聊 TypeScript 中的类型保护 在 TypeScript 中使用联合类型时,往往会碰到这种尴尬的情况: 如上所示,getSmallPet 函数中,既可以返回 Fish 类型的对象,又可以返回 Bird 类型的对象。由于返回的对象类型不确定,所以使用联合类型对象共有的方法时,一切正常,但是使 ...
分类:
其他好文 时间:
2020-05-14 17:20:40
阅读次数:
79
使用Prometheus和Grafana对MySQL服务器性能进行监控。使用两个exporter:node_exporter:服务器系统数据收集mysqld_exporter:MySQL服务器数据收集监控架构图:Prometheus安装配置安装方式二进制安装,详见这里CentOS7部署Prometheus版本:目前最新版本prometheus-2.18.1修改Prometheus配置文件prome
分类:
数据库 时间:
2020-05-14 11:36:58
阅读次数:
166