文/何登成 导读: 来自网易研究院的MySQL内核技术研究人何登成,把MySQL数据库InnoDB存储引擎的多版本控制(简称:MVCC)实现原理,做了深入的研究与详细的文字图表分析,方便大家理解InnoDB存储引擎实现的多版本控制技术(简称:MVCC)。基本知识假设对于多版本控制(MVCC)的基础知...
分类:
数据库 时间:
2014-06-19 07:57:54
阅读次数:
401
1、ViewData对象 ViewBagData是一种字典集合数据同时属于视图基类和控制器基类的属性。 实例: //控制器public class HomeController:Controller{ public ActionResult Index() { ...
分类:
Web程序 时间:
2014-06-19 06:48:39
阅读次数:
402
String对象提供的方法用于处理字符串及字符。常用的一些方法:charAt(index):返回字符串中index处的字符。indexOf(searchValue,[fromIndex]):该方法在字符串中寻找第一次出现的searchValue。如果给定了fromIndex,则从字符串内该位置开.....
分类:
编程语言 时间:
2014-06-19 00:51:39
阅读次数:
243
Android开发环境搭建文件下载:1.java JDK下载:http://java.sun.com/javase/downloads/index.jsp2.Android SDK下载:http://developer.android.com/sdk/index.html安装1.java JDK解压...
分类:
移动开发 时间:
2014-06-15 15:27:33
阅读次数:
357
1. 文件复制
bool copy (string $source , string $dest ) PHP 4, PHP 5)
header("content-type:text/html;charset=utf-8");
$source_path = "index.php";
$dest_path = "copy_content.php"...
分类:
Web程序 时间:
2014-06-15 14:32:14
阅读次数:
207
水到家了#include #include #include using namespace std;struct Point{ int index, pos; Point(int index_ = 0, int pos_ = 0){ index = index_; ...
分类:
其他好文 时间:
2014-06-14 21:21:40
阅读次数:
281
mysql日志:140614 9:45:36 [Note] Plugin 'FEDERATED' is disabled.140614 9:45:36 InnoDB: The InnoDB memory heap is disabled140614 9:45:36 InnoDB: Mutexes a...
分类:
数据库 时间:
2014-06-14 16:52:44
阅读次数:
232
附网址:http://qt-project.org/doc/qt-5/qtquickdialogs-index.html
Qt Quick Dialogs —— Qt Quick对话框
该模块自Qt 5.1推出。
Dialogs
ColorDialog —— 用来选择颜色的对话框
FileDialog —— 文件对话框
FontDialog —— 字体对话框
Mess...
分类:
其他好文 时间:
2014-06-14 13:07:54
阅读次数:
305
附网址:http://qt-project.org/doc/qt-5/qtquicklayouts-index.html
Qt Quick Layouts —— Qt Quick布局
Qt Quick Layouts是用来对用户界面内元素进行布局的一组QML类型。与positioners不同的是,Layouts会改变这些组件的尺寸。这使得它很适合用在尺寸可变的用户界面上。由于layou...
分类:
其他好文 时间:
2014-06-14 11:52:02
阅读次数:
341
1、继承Thread类,实现run方法
class TestThread
{
public static void main(String[] args)
{
Thread1 t1=new Thread1();
t1.start();
int index=0;
while(true)
{
if(index++==500)
{
t1.stopThread...
分类:
编程语言 时间:
2014-06-14 10:25:58
阅读次数:
317