最新 最热

Mysql 数据库导入导出比较快的方式

6、新库修改文件权限,数据文件抽过来之后默认为 root 权限,改为 mysql 权限

2021-06-16
0

Kafka 高性能的原因

顺序写,Page Cache 空中接力,高效读写0 拷贝后台异步、主动Flush预读策略,IO调度

2021-02-22
0

C++核心准则​SL.io.50:避免使用endl

The endl manipulator is mostly equivalent to 'n' and "n"; as most commonly used it simply slows down output by doing redundant flush()s. This slowdown can be ...

2020-10-30
0

Codeforce-Ozon Tech Challenge 2020-D. Kuroni and the Celebration(交互题+DFS)

After getting AC after 13 Time Limit Exceeded verdicts on a geometry problem, Kuroni went to an Italian restaurant to celebrate this holy achievement. Unfortuna...

2020-10-28
0

非易失性WAL buffer实现解析(四)

本文接着介绍checkpoint对WAL BUFFER的改造。改造函数CreateCheckPoint函数。

2020-10-28
0

字节流---输入输出

流的输入及输出均是对程序而言 字节流输入创建File对象,关联文件File src = new File("D:/aa", "a.txt");1)、创建以src为输入流的对象,Inputstream in = new FileInputStream(src);2)、建立字节数组(byte[]),创建长度整...

2020-07-30
0

Linux学习笔记(六)关机、重启命令

syncshutdownrebootinitsync英文原意:flush file system buffers功能:刷新文件系统缓冲区,将内存中的数据保存到硬盘中语法:syncshutdown英文原意:bring the system down功能:关机和重启语法:shutdown 选项[-ch......

2020-07-15
0

基础知识 | 每日一面(85)

读者:如何清除多余的输入, 以防止在下一个提示符下读入?fflush(stdin)可以吗?

2020-03-24
0

MySQL Binlog和Relaylog生成和清理

BINLOG文件生成与删除 binlog文件生成: 在每条二进制日志写入到日志文件后,会判断该文件是否超过max_binlog_size,如果超过则生成一个新的binlog

2020-03-20
0

Python函数print()参数end的坑和解决方法

虽然sep参数和file参数也有很重要的用途,但是没啥坑,常规使用即可,本文重点介绍end和flush。使用print()函数输出完给定的值之后,默认以换行结束,例如:...

2020-02-24
0