以下是梳理的几个不错的pg 监控工具,方便分析pg的性能问题 pg_stat_statements http://www.postgres.cn/docs/11/pgstatstatements.html pg_top https://github.com/markwkm/pg_top pg_sys ...
分类:
其他好文 时间:
2020-03-23 09:17:19
阅读次数:
141
作用 while 循环是 Shell 脚本中最简单的一种循环,当条件满足时,while 重复地执行一组语句,当条件不满足时,就退出 while 循环。 while 循环的用法 1 while condition 2 do 3 statements 4 done condition表示判断条件,sta ...
分类:
其他好文 时间:
2020-03-22 15:43:22
阅读次数:
80
闭包是功能性自包含模块,可以在代码中被传递和使用。 Swift 中的闭包与 Objective-C中的 blocks 以及其他一些编程语言中的 lambdas 比较相似。闭包的基本语法闭包表达式语法123{ (paramenters) -> returnType in statements}例如 :... ...
分类:
编程语言 时间:
2020-02-09 22:17:35
阅读次数:
84
https://websitebeaver.com/prepared statements in php mysqli to prevent sql injection introduction One Row $result fetch_assoc() Fetch an associative a ...
分类:
数据库 时间:
2020-02-01 16:41:15
阅读次数:
97
"How to write efficient MySQL query statements" "WHERE子句中的书写注意事项" "模糊查询(like)时需要注意的事项" "索引" "字段类型" "表连接时的注意事项" "其他注意事项" 子句中的书写注意事项 首先应考虑在 where 及 orde ...
分类:
数据库 时间:
2020-02-01 10:38:22
阅读次数:
109
awk是一个强大的报告生成工具,用于格式化文本输出 语法: awk [options] -f 'program' filename program由{ pattern + action statements}组成,动作语句之间用分号“;”分隔 选项: -F:指定输入分隔符 -v VAR=value: ...
分类:
其他好文 时间:
2020-01-31 15:43:30
阅读次数:
68
使用mysql connector的时候,如果报这个错误 Can't create more than max_prepared_stmt_count statements (current value: 16382) 是因为下面的写法有一定问题,如果catch了错误,那么stmt就不会释放,最好是 ...
分类:
其他好文 时间:
2020-01-31 10:48:06
阅读次数:
96
一、循环语句 1.循环语句:允许执行下一个语句或语句组多次 2. 循环类型 3. 循环控制语句 4. while 循环语句 a.while循环语句:在某个条件下,循环执行某段程序,以处理需要重复处理的相同任务 while 判断条件(condition): 执行语句(statements)...... ...
分类:
编程语言 时间:
2020-01-28 14:04:47
阅读次数:
83
摘自:https://www.cnblogs.com/zhuifeng-mayi/p/9270592.html 是什么 mysql官网定义 The SHOW PROFILE and SHOW PROFILES statements display profiling information that ...
分类:
数据库 时间:
2020-01-28 09:30:20
阅读次数:
84
awk:格式化文本输出 gawk - pattern scanning and processing language awk:gawk的符号链接 基本用法:gawk [options] 'program' FILE program:PATTERN {ACTION STATEMENTS} 语句之间用 ...
分类:
其他好文 时间:
2020-01-09 20:44:26
阅读次数:
76