MVCC SQLSERVER的快照隔离级别MVCC产品简介编辑Multi-Version Concurrency Control 多版本并发控制大多数的MySQL事务型存储引擎,如InnoDB,Falcon以及PBXT都不使用一种简单的行锁机制。事实上,他们都和另外一种用来增加并发性的被称为“多版本...
分类:
数据库 时间:
2014-07-07 20:45:47
阅读次数:
879
Built-in Control Structures 内置控制结构1 if 控制结构scala的if跟java的if结构上相同,功能上也差不太多,scala的说法是,if能够返回一个值 val fileName = if (!args.isEmpty) args(0) else "default....
分类:
其他好文 时间:
2014-07-07 18:33:10
阅读次数:
169
HTML: ASP response.expires=0 response.addHeader("pragma","no-cache") response.addHeader("Cache-Control","no-store, must-revalidate") PHP header("E...
分类:
Web程序 时间:
2014-07-07 17:48:45
阅读次数:
267
1. start IDLE
“Python 2.5”→“IDLE(Python GUI)”
2. open your source file window
From python shell, select file->open...
3. show debug control
From python shell, select Debug->Debuger
4....
分类:
编程语言 时间:
2014-06-29 22:47:26
阅读次数:
356
公司一个移动后端的项目用到了webapi项目搭建到外网环境共app开发者调用测试接口时遇到了一个问题接口不允许跨域调用。查阅资料明白同源策略原则根据请求报头值Origin与回应报头值Access-Control-Allow-Origin来判断是否允许调用解决方法1.ajax使用jsonpjsonp ...
分类:
移动开发 时间:
2014-06-27 15:21:12
阅读次数:
351
keycode 8 = BackSpace BackSpace
keycode 9 = Tab Tab
keycode 12 = Clear
keycode 13 = Enter
keycode 16 = Shift_L
keycode 17 = Control_L
keycode 18 = Alt_L
keycode 19 = Pause
ke...
分类:
编程语言 时间:
2014-06-27 09:17:42
阅读次数:
301
Warning: Cannot modify header information - headers already sent by出错的原因我在php程序的头部加了,header("cache-control:no-cache,must-revalidate");之后页面就出现上面的错误,看了N...
分类:
其他好文 时间:
2014-06-26 18:41:36
阅读次数:
167
前天介绍了《Sublime Text 2 绿化与汉化 [Windows篇]》,应大家要求,我特地做了汉化版分享给大家。很清新吧,但我没安装多余的插件,只是安装了几个必备的插件,如 输入法支持,GBK支持,Package Control。Emmet 是我特地加上的,如果不喜欢解压后先别运行,打开Pri...
分类:
其他好文 时间:
2014-06-26 15:15:17
阅读次数:
250
写这篇原创文章是因为看到了极客中的一篇文章《有趣各种编程语言实现2+2=5》,其中C语言是这样实现的:
int main() {
char __func_version__[] = “5″; // For source control
char b[]=”2″, a=2;
printf(“%d + %s = %s\n”, a, b, a+b);
return 0;
}
有些童鞋可能会说...
分类:
编程语言 时间:
2014-06-26 11:03:19
阅读次数:
282
最近有一个需求,就是控制系统的音量,我们都知道原理在mediaPlayer.framework框架下,有方法
// The current volume of playing music, in the range of 0.0 to 1.0.
// This property is deprecated -- use MPVolumeView for volume control instea...
分类:
其他好文 时间:
2014-06-26 10:44:33
阅读次数:
324