private void CreateExcel() { string header =
string.Empty; string line = string.Empty; try { dltDataBind(); Response.Clear();
Response.Buffer = true;....
分类:
其他好文 时间:
2014-06-29 14:28:54
阅读次数:
235
1 #include 2 #include 3 #include 4 //信号量与关键段 5
CRITICAL_SECTION g_cs; 6 HANDLE Empty,Full; 7 8 const int
BUFFER_SIZE=10;//10个缓冲池 9 const int numo...
分类:
编程语言 时间:
2014-05-30 09:20:55
阅读次数:
371
http://blog.chinaunix.net/uid-23577393-id-1751983.htmlTo
count how often any pattern occurs in the current buffer use the
substitutecommand and add th...
分类:
其他好文 时间:
2014-05-29 17:37:03
阅读次数:
217
1.在PHP编程中, 我们经常会遇到一些直接产生输出的函数,
如passthru(),readfile(), var_dump() 等. 但有时我们想把这些函数的输出导入到文件中,或者先经过处理再输出,
或者把这些函数的输出作为字符串来处理. 这时我们就要用到 Output Buffer(输出缓冲....
分类:
Web程序 时间:
2014-05-27 16:05:43
阅读次数:
328
http://baptiste-wicht.com/posts/2012/04/c11-concurrency-tutorial-advanced-locking-and-condition-variables.htmlstruct
BoundedBuffer { int* buffer; ...
分类:
编程语言 时间:
2014-05-27 16:04:22
阅读次数:
303
public void Update(byte[] buffer){if ( buffer ==
null ) {throw new ArgumentNullException("buffer"); //判断参数为空,抛出异常,而非try
catch捕获}Update(buffer, 0, buf....
分类:
其他好文 时间:
2014-05-26 07:03:27
阅读次数:
268
buffer:缓冲区,一个用于存储速度不同步的设备或优先级不同的设备之间传输数据的区域,通过缓冲区,可以使进程之间的等待时间变少,从而使从速度慢的存储设备上读数据时,速度快的设备操纵进程不发生间断cache:高速缓冲存储器,位于cpu和内存之间的一种容量较小的但是速度很高的存储器。由于cpu的速度远...
分类:
其他好文 时间:
2014-05-26 06:43:46
阅读次数:
218
一、buffer overflow,limit of 10000 bytes
declare
begin
for c in 1..1000 loop
dbms_output.put_line('测试测试测试');
end loop;
end;
缓冲区默认大小为10000 bytes。循环1000次一共有6000个汉字,也就是12000 bytes。在SQL窗口的输出标签页可设置缓冲...
分类:
数据库 时间:
2014-05-26 06:14:00
阅读次数:
333
<?php
/*--------------------编写自己的缓存类---------------*/
class my_cache{
//定义有关变量
private $cache_time;//缓存有效时间
private $cache_file;//缓存文件保存路径
//初始化类,默认是index.html时间是1
function __construc...
分类:
Web程序 时间:
2014-05-25 21:54:23
阅读次数:
328
SGA(SYSTEM Global Area )系统全局区
l 数据高速缓存
在Oracle进行数据处理的过程中,代价最昂贵的就是物理 I/O操作了。同样的数据从内存中得到要比从磁盘上读取快的多。因此,优化Oracle的一个重要的目标就是尽可能的降低物理
I/O操作。
Oracle的 Buffer Cache用于缓存从磁盘中读取的数据,当 Oracle需要查找某些信息的时候,首先会在
...
分类:
数据库 时间:
2014-05-25 00:29:26
阅读次数:
479