码迷,mamicode.com
首页 >  
搜索关键字:store buffer    ( 10258个结果
【MySQL】mysql buffer pool结构分析
转自:http://blog.csdn.net/wyzxg/article/details/7700394其他参考:《高性能MySQL》 - 8.4.5 InnoDB缓冲池《MySQL技术内幕InnoDB存储引擎》(第二版内容有所更新) - 2.3 InnoDB体系结构###############...
分类:数据库   时间:2014-06-06 21:02:59    阅读次数:549
commit后数据库干的工作
用户提交commit后,数据库干的工作有: 1,oracle为用户的transaction生成一个SCN号。 2,LGWR把redo buffer中的数据写入到redo log file,同时把SCN号记录到redo log file中。这一步完成后,说明用户提 交的数据已经安全的写到磁盘 3,释放...
分类:数据库   时间:2014-06-06 20:49:58    阅读次数:337
VisualStudio下std::string的内存布局
主要成员 union _Bxty { // storage for small buffer or pointer to larger one _Elem _Buf[_BUF_SIZE]; _Elem *_Ptr; } _Bx; size_type _Mysize; // current l...
分类:其他好文   时间:2014-06-06 18:22:13    阅读次数:238
自定义网络消息
#define MSG_HEAD_LEN 4//消息头部结构typedef struct tagMsg { //消息类型 u16 type; //消息体长度 u16 length;}TMsg;void receive(SOCKET s){ char buffer[1024*28]; //CServM...
分类:其他好文   时间:2014-06-06 11:25:33    阅读次数:243
OSX 10.10安装教程。
现在苹果已经放出了OS X 10.9 Mavericks第一个开发者预览版,从Mac App Store中获得的安装程序,可以在10.8的系统中直接进行升级,原有文件都会保留。但是要想制作成一个10.9的安装U盘,那么可就没有之前10.7和10.8那么简单了,这次苹果不让人直接制作那么简单了。当然,...
分类:其他好文   时间:2014-06-05 21:34:01    阅读次数:285
redis cluster practice
redis cluster practice1. create three instance folder: 9001,9002,9003,folder name as redis instance port2.Store configuration files redis-server, redi...
分类:其他好文   时间:2014-06-03 17:02:51    阅读次数:474
一个Brushes笔画应用ios源码完整版
效果很不错的画笔App,提供几十种不同的画笔,包括毛笔画笔。拥有绘画App的一些基本功能,包括颜色选择、绘画保存,支持撤销(undo)、重做(redo)以及橡皮擦功能等等,甚至还支持类似PhotoShop图层(layer)的功能(如第二张效果图)。说明:应用的App Store地址:https://...
分类:移动开发   时间:2014-06-03 16:12:14    阅读次数:285
苹果发布【新开发语言】Swift
Swift is a multi-tenant, highly scalable and durable object storage system that was designed to store large amounts of unstructured data at low cost v...
分类:移动开发   时间:2014-06-03 15:50:12    阅读次数:369
java流的性能优化1-文件复制
传统的I/O速度相对比较慢,它会成为系统性能的瓶颈,所以在java1.4之后提供了NIO,它是一种全新的流:它具有以下特性:        1.为所有的原是类型提供Buffer缓存支持; 2.使用java.nio.charset.Charset作为字符编码解码解决方案; 3.增加通道(Channel)对象,作为新的原始I/O抽象; 4.支持锁和内存映射文件的文件访问接口; 5.提供基于S...
分类:编程语言   时间:2014-06-02 12:29:02    阅读次数:294
OpenGL【2 坐标变换】
// OpenGL.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include #include using namespace std; void init(void) { glClearColor(1.0,1.0,1.0,1.0); glClear(GL_COLOR_BUFFER_BIT); glShadeMod...
分类:其他好文   时间:2014-06-02 11:02:18    阅读次数:282
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!