1.错误日志:warn:an upstream response is buffered to a temporary file? ?? 解决办法:增加fastcgi_buffers 8 4K; ????fastcgi_buffer_size 4K; 2. a client request body is buffered to a te...
分类:
其他好文 时间:
2015-01-29 19:44:06
阅读次数:
219
有3种常用方式:METHOD_BUFFERED METHOD_IN_DIRECT METHOD_OUT_DIRECT 还有METHOD_NEITHER,《windows设备驱动WDF开发》描述为:源自win 9x的VxD的模式,不建议读者掌握。这个就不管了。 METHOD_BUFFERED:无论读和写都对应同一缓冲区 METHOD_IN_DIRECT\ METHOD_OUT_DIRECT...
RequestContext
RequestContext可以看成request和response的合体。多个RequestContext还可以串起来,就像Filter链条一样。每个外层RequestContext都会在内层RequestContext的基础上增加功能。在设计模式中这叫装饰器。
RequestContext种类有basic/buffered/lazy-commit/pa...
分类:
Web程序 时间:
2014-11-12 23:06:32
阅读次数:
381
目前在学习Socket,因为和IO关系紧密,于是顺便也学了下IO
发现有这样一句话:
The flush method is valid on any output stream,but has no effect unless the stream is buffered
这句话意思是所有的输出流都有flush方法,但是仅对缓冲流有效
看到这里,笔者想到了自己写的serversocket...
分类:
编程语言 时间:
2014-11-12 11:53:08
阅读次数:
278
Channels can bebuffered. Provide the buffer length as the second argument tomaketo initialize a buffered channel:ch := make(chan int, 100)Sends to a b...
分类:
其他好文 时间:
2014-10-29 01:43:40
阅读次数:
142
当然,我们也可以配合grep,只查看包含指定字符的log信息
[root@localhost ~]#tail -f file | grep --line-buffered your_pattern...
分类:
系统相关 时间:
2014-10-19 17:13:55
阅读次数:
290
package com.bjsxt.io.buffered; import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputS...
分类:
其他好文 时间:
2014-10-04 02:43:35
阅读次数:
294
缓冲I/O(Buffered I/O)
InputStream.read()以及OutputStream.write()操作的对象是单个字节。根据它们访问的资源的不同,使用这些方法可能会相当慢。
比如在使用FileInputStream.read()时,速度会慢的令人发指。因为每次调用都会访问操作系统的内核去拿到1个字节的数据。在现代的操作系统中,内核往往会使用缓冲I/O实现,因此这个...
分类:
编程语言 时间:
2014-09-26 02:41:38
阅读次数:
184
A speculativestorebuffer is speculatively updated in response to speculative storememory operations buffered by aload/storeunit in a microprocessor. I...
分类:
其他好文 时间:
2014-09-24 01:40:45
阅读次数:
200
I spent several hours to figure out some conceptions about channel tonight1. buffered channel and non-buffered channelbuffered channelbufferedchan := ...
分类:
其他好文 时间:
2014-09-19 01:08:44
阅读次数:
256