码迷,mamicode.com
首页 >  
搜索关键字:sendfile    ( 103个结果
vagrant nginx php开发环境中浏览器访问js文件,文件中出现乱码的解决方法
当nginx配置 sendfile设置为on时,某些js文件中会出现奇怪的字符:?????????????????不管怎么刷新,重启服务都无效;通过google搜索之后发现原来是因为开启sendfile的原因!将senfile设置为off,则不再出现此问题!这个可能就是vagrant原因的造成的吧!...
分类:Web程序   时间:2015-05-18 18:37:35    阅读次数:160
Centos下Tomcat 安装Apache Portable Runtime
APR(Apache Portable Runtime)是一个高可移植库,它是Apache HTTP Server 2.x的核心。APR有很多用途,包括访问高级IO功能(例如sendfile,epoll和OpenSSL),OS级别功能(随机数生成,系统状态等等),本地进程管理(共享内存,NT管道和U...
分类:Web程序   时间:2015-05-17 00:37:07    阅读次数:198
最简单的配置nginx.conf使之成为静态文件下载服务器
sendfile on; tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 8082; #端口 server_name localhost...
分类:其他好文   时间:2015-04-21 16:00:05    阅读次数:147
Linux下利用sendfile函数传输文件
#include #include #include #include #include #include #include #include #include #include #include #include #include int main() { const char *ip="127.0.0.1"; int port=12345;...
分类:系统相关   时间:2015-03-09 16:13:09    阅读次数:470
为 Tomcat 安装 apr
apr 官方介绍:Tomcat可以使用APR来提供超强的可伸缩性和性能,更好地集成本地服务器技术。APR(Apache Portable Runtime)是一个高可移植库,它是Apache HTTP Server 2.x的核心。APR有很多用途,包括访问高级IO功能(例如sendfile,epoll...
分类:其他好文   时间:2015-01-31 15:57:58    阅读次数:212
几个系统调用分析 glibc中的malloc调用和共享内存原理
本文主要分析内存以及I/O相关的系统调用和库函数的实现原理,根据原理给出在使用过程中需要注意的问题和优化的侧重点,本文涉及到的系统调用包括readahead,pread/pwrite,read/write,mmap,readv/writev,sendfile,fsync/fdatasync/msyn...
分类:其他好文   时间:2015-01-21 22:07:44    阅读次数:291
C#中部分方法的各种限制
1、C#中部分方法总是私有的? 假如你是类的设计者,设计出某个部分类如MyClass。当你把这个类设计完后,别人就可以用这个类。 对于类的使用者来说,类的外观就是各种public的属性、字段和方法。 假如,你在MyClass中定义了一个部分方法SendFile用来传输文件,但是你没有提供这个方法的实现代码。 现在类的使用者知道MyClass类中有个public方法SendFile可以用来传...
分类:Windows程序   时间:2015-01-12 13:04:31    阅读次数:241
tengine lua 开源一 调用内部接口高效发送文件
tengine  lua 开源一 调用内部接口高效发送文件 开源自己封装的sendfile 模块,可以高效的通过lua发送文件 源码地址:https://github.com/weinyzhou/Lua-sendfile 调用方法 local sendfile=require "sendfile"; sendfile.call(filename,-1,-1); ...
分类:其他好文   时间:2015-01-08 18:07:40    阅读次数:148
springmvc下上传文件
使用ajax+表单+jQuery;function sendFile() { var action = "c/goFile.do"; $("#form").ajaxSubmit( { url : action, success : function(data)...
分类:编程语言   时间:2014-12-14 07:00:21    阅读次数:234
php以不同名字下载同一个文件(x-sendfile) 【转】
1、linux 下nginx默认支持x-sendfile模式Nginx 默认支持该特性,不需要加载额外的模块。需要发送的 HTTP 头为 X-Accel-Redirect。另外,需要在配置文件中做以下设定location /protected/ { internal; root /some/pa.....
分类:Web程序   时间:2014-10-29 08:02:47    阅读次数:151
103条   上一页 1 ... 7 8 9 10 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!