写在前面:作者水平有限,欢迎不吝赐教,一切以最新源码为准。InnoDB redo
log首先介绍下Innodb redo log是什么,为什么需要记录redo log,以及redo
log的作用都有哪些。这些作为常识,只是为了本文完整。InnoDB有buffer pool(简称bp)。bp是数据库页...
分类:
数据库 时间:
2014-05-08 12:47:11
阅读次数:
573
安装插件request,iconv-lite。zlib內置。1、设置请求参数中的encoding为null,这样传入回调函数中的body将是一个buffer。(默认为utf8编码)2、用zlib.gunzip()方法对body进行解压,解压的到的依然是个buffer。request({ uri:
u...
分类:
Web程序 时间:
2014-05-08 12:19:22
阅读次数:
851
硬件平台:Atmel SAMA5D3
Android版本:4.2.2
mediaserver进程是Camera Service的容器进程,它会动态加载Camera HAL和Gralloc HAL。
视频数据帧首先必须从Camera驱动程序到达Camera硬件抽象层。
在Camera硬件抽象层,视频数据帧被从video capture buffer拷贝到gralloc buffer。...
分类:
移动开发 时间:
2014-05-08 10:41:07
阅读次数:
565
1、EXP 1 a>完全模式 full=y 2 3 EXP USER/PASSWORD@DB
(AS ROLE) BUFFER=64000 FILE=C:\FULL.DMP FULL=Y 4 5 b>用户模式 owner=user 6 7 EXP
USER/PASSWO...
分类:
数据库 时间:
2014-05-07 13:53:41
阅读次数:
392
Memory Architecture-SGA-Database Buffer Cache...
分类:
数据库 时间:
2014-05-07 13:31:15
阅读次数:
439
【题目】
原文:
1.3 Design an algorithm and write code to remove the duplicate characters in a string without using any additional buffer. NOTE: One or two additional variables are fine. An
extra copy of...
分类:
其他好文 时间:
2014-05-07 08:48:12
阅读次数:
372
nginx的slab分配器主要和共享内存(nginx自己实现的共享内存 采用mmap或者shm实现)一起使用,Nginx在解析完配置文件,把即将使用的共享内存全部以list链表的形式,对共享内存进行管理和划分。在nginx_cycle.c中
static ngx_int_t
ngx_init_zone_pool(ngx_cycle_t *cycle, ngx_shm_zone_t *zn)
{
...
分类:
其他好文 时间:
2014-05-07 08:18:53
阅读次数:
361
封装了一个基于C++11的线程池对象。
异步执行的任务,从线程池中分配一个空闲的线程来执行该任务.
如果没有空闲的线程可以执行,则进入队列排队
task_pool_init(10);
for( int i = 0 ; i < 200 ; i ++ )
{
run_job([i]{
std::this_thread::sleep_for(std::chrono::seconds(1));
});
}
...........................
...
分类:
编程语言 时间:
2014-05-06 23:16:37
阅读次数:
378
本文首先试验并分析了scanf("%s", buf);的安全性,然后对operator>>(istream&, string&)的实现细节进行分析,最后仿照operator>>用C语言实现了读入长度未知的字符串(字符行)...
分类:
其他好文 时间:
2014-05-06 21:17:37
阅读次数:
596
(defun buffer-exists (bufname)
(not (eq nil (get-buffer bufname))))
(defun make-shell (name)
"Create a shell buffer named NAME."
(interactive "sName: ")
(if (buffer-exists "*eshell*")...
分类:
其他好文 时间:
2014-05-06 19:40:04
阅读次数:
262