摘要: Innodb Buffer Pool内部结构1. Innodb Buffer 功能Innodb buffer pool的主要功能存储外存页面在内存中的镜像.镜像有如下2种镜像:(1)只读镜像:只读镜像读取的是非脏页。(2)更新镜像:更新镜像为buffer pool中的脏页。Innodb实现了行级多版... 阅读全文
posted @ 2015-05-14 22:04 一个万能盒子叫数据库 阅读(1296) 评论(0) 推荐(0) 编辑
摘要: 加班无聊,没事就写了一个简单栈,该源代码包含一个stk.h和stk.c具体实现如下stk.h typedef unsigned int uint;typedef struct _node{void *data;uint size;struct _node *down;}__attribute__((... 阅读全文
posted @ 2015-05-14 21:27 一个万能盒子叫数据库 阅读(268) 评论(0) 推荐(0) 编辑