码迷,mamicode.com
首页 >  
搜索关键字:buffer pool    ( 7994个结果
hadoop作业调优参数整理及原理
1 Map side tuning参数1.1 MapTask运行内部原理 当map task开始运算,并产生中间数据时,其产生的中间结果并非直接就简单的写入磁盘。这中间的过程比较复杂,并且利用到了内存buffer来进行已经产生的部分结果的缓存,并在内存buffer中进行一些预排序来优化整个map.....
分类:其他好文   时间:2014-05-20 01:54:58    阅读次数:341
字符串系列函数(不断跟新)
1.sprintf,sprintf_ssprintf(char* buffer, const char* format, [argument]);vs下需要加上_CRT_SECURE_NO_WARNINGS#include using namespace std;int main(){ cha...
分类:其他好文   时间:2014-05-20 01:40:00    阅读次数:292
web socket RFC6455 frame 打包、解包
#ifndef __APP_WEBSOCKET_FRAME_H__ #define __APP_WEBSOCKET_FRAME_H__ #include "memory.hpp" class buffer; struct websocket_frame { websocket_frame(); ~websocket_frame(); static const unsigned int f...
分类:Web程序   时间:2014-05-18 09:37:29    阅读次数:332
MySQL 5.5: InnoDB Change Buffering
To speed up bulk loading of data, InnoDB implements aninsert buffer, a special index in the InnoDB system tablespace that buffers modifications to sec...
分类:数据库   时间:2014-05-16 18:26:09    阅读次数:532
几个常用ORACLE运维监控的SQL语句
1.消耗CPUSELECT a.CPU_TIME, --CPU时间 百万分之一(微秒) a.OPTIMIZER_MODE,--优化方式 a.EXECUTIONS,--执行次数 a.DISK_READS,--读盘次数 a.SHARABLE_MEM,--占用shared pool...
分类:数据库   时间:2014-05-16 04:07:52    阅读次数:419
String 内在分配解析
1.String类概念(1)String是final的,不可被继承。public final class String。String是的本质是字符数组char[], 并且其值不可改变。private final char value[];(2)Java运行时会维护一个String Pool(Stri...
分类:其他好文   时间:2014-05-16 03:32:32    阅读次数:301
emacs quick open and jump file (or buffer) which name is current word
Sometime, we need to open a file or buffer which name began with current word in emacs. Here I give the solution as follows. (provide 'quick-file-jump) (defun ab/quick-buffer-jump () "Quickly jum...
分类:其他好文   时间:2014-05-15 15:02:20    阅读次数:373
调优5(SGA其他缓存区调整)
第五章 SGA其他缓存区调整一、redo log buffer1、redo log 的功能1)Sever 进程在buffer cache修改数据块后,Oracle提倡‘先记后写’,对修改的数据块的改变生成log entries(日志条目),将日志条目按顺序写入log buffer;而对于脏块 先.....
分类:其他好文   时间:2014-05-14 09:52:54    阅读次数:276
linux环境下deb格式 转换成rpm格式
linux环境下deb格式 转换成rpm格式使用alien工具转换deb格式到rpm格式alien_8.87.tar.gz下载alien_8.87.tar.gz[root@mysqlnode2 ~]# wget http://ftp.de.debian.org/debian/pool/main/a....
分类:系统相关   时间:2014-05-14 07:22:03    阅读次数:527
centos时间调整的操作(转)
在我们使用CentOS系统的时候,也许时区经常会出现问题,有时候改完之后还是会出错,下面我们就来学习一种方法来改变这个状况。如果没有安装,而你使用的是 CentOS系统 那使用命令 yum install ntp然后:ntpdate us.pool.ntp.org 。因为CentOS系统是用rhas...
分类:其他好文   时间:2014-05-14 07:05:33    阅读次数:258
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!