摘要:
北京生活 TIPS - 银行服务篇 | Solrex² - 杨文博的博客,记录我的生活、思想、技术和梦想You are here: Home » 生活 » 北京生活 TIPS - 银行服务篇北京生活 TIPS - 银行服务篇 阅读全文
posted @ 2013-03-29 14:31
lexus
阅读(201)
评论(0)
推荐(0)
|
摘要:
北京生活 TIPS - 银行服务篇 | Solrex² - 杨文博的博客,记录我的生活、思想、技术和梦想You are here: Home » 生活 » 北京生活 TIPS - 银行服务篇北京生活 TIPS - 银行服务篇 阅读全文
posted @ 2013-03-29 14:31
lexus
阅读(201)
评论(0)
推荐(0)
摘要:
生活 | Solrex² - 杨文博的博客,记录我的生活、思想、技术和梦想Category Archives: 生活北京生活 TIPS - 谈谈日常理财 阅读全文
posted @ 2013-03-29 14:30
lexus
阅读(176)
评论(0)
推荐(0)
摘要:
基于EPOLL写的HTTP服务器(加入了线程池)_没落都城_新浪博客 基于EPOLL写的HTTP服务器(加入了线程池) (2010-12-07 19:02:51) 转载▼ 标签: 杂谈 分类: EPOLL #include<fcntl.h> #include<cstdio> #include<unistd.h> #include<cstdlib> #include<sys/socket.h> #... 阅读全文
posted @ 2013-03-29 14:19
lexus
阅读(345)
评论(0)
推荐(0)
摘要:
epoll 事件之 EPOLLRDHUP | Solrex² - 杨文博的博客,记录我的生活、思想、技术和梦想You are here: Home » 开源 » Linux » epoll 事件之 EPOLLRDHUPepoll 事件之 EPOLLRDHUP2011-07-01在对系统问题进行排查时,我发现了一个奇怪的现象:明明是对方断开请求,系统却报告一个查询失败的错误,但从用户角度来看请求的结... 阅读全文
posted @ 2013-03-29 14:16
lexus
阅读(1797)
评论(0)
推荐(1)
摘要:
saghul, on code « How do event loops work in Python?How do event loops work in Python? 阅读全文
posted @ 2013-03-29 14:13
lexus
阅读(55)
评论(0)
推荐(0)
摘要:
Tinyproxy - A light-weight HTTP/HTTPS proxyTinyproxyTinyproxy is a light-weight HTTP/HTTPS proxy daemon for POSIX operating systems. Designed from the ground up to be fast and yet small, it is an ide... 阅读全文
posted @ 2013-03-29 14:05
lexus
阅读(1381)
评论(0)
推荐(0)
摘要:
http://www.xmailserver.org/eventfd-aio-test.c 阅读全文
posted @ 2013-03-29 13:41
lexus
阅读(262)
评论(0)
推荐(0)
摘要:
一个epoll/aio/eventfd结合使用的简单例子_sunfly_新浪博客一个epoll/aio/eventfd结合使用的简单例子(2012-05-24 00:37:41)转载▼标签:epolllibaioeventfd杂谈 #define _GNU_SOURCE#define __STDC_FORMAT_MACROS#include <stdio.h>#include <errno.h>#... 阅读全文
posted @ 2013-03-29 13:40
lexus
阅读(466)
评论(0)
推荐(0)
摘要:
方式一: typedefstd::multimap<int,int> Pairs; multimap<int,int>::iterator iter; Pairs pairs; pairs.insert(make_pair(1, 1)); pairs.insert(make_pair(1,2)); pairs.insert(make_pair(1,3)); pairs.insert(make_pa... 阅读全文
posted @ 2013-03-29 13:37
lexus
阅读(618)
评论(0)
推荐(0)
摘要:
direct-io-zonian-ChinaUnix博客direct-io 2011-10-19 14:20:37分类: LINUX这两天抽时间把以前的一个遗留的direct-io问题跟踪了下。 Direct-io的目的在于绕过fs的cache,直接对block设备上的文件进行读写,其目的在于提高读写性能(以读为例,毕竟少了一次从fs cache 到用户态buffer的拷贝过程),这在文件仅读/写... 阅读全文
posted @ 2013-03-29 13:34
lexus
阅读(357)
评论(0)
推荐(0)
摘要:
Direct I/O 与正常高速缓存的 I/ODirect I/O 与正常高速缓存的 I/OLeave a reply --> 阅读AIX的手册,看到关于 Direct I/O 的一些描述:直接 I/O 与正常高速缓存的 I/O通常,JFS 或 JFS2 将文件页面高速缓存在内核存储器中。当应用程序执行文件读取请求时,如果文件页面不在内存中,则 JFS 或 JFS2 将数据从磁盘读取到文件高速缓存... 阅读全文
posted @ 2013-03-29 13:30
lexus
阅读(285)
评论(0)
推荐(0)
摘要:
Linux 中直接 I/O 机制的介绍Linux 中直接 I/O 机制的介绍黄 晓晨, 软件工程师, IBM黄晓晨,IBM system Z 自动化技术支持软件工程师。简介:对于传统的操作系统来说,普通的 I/O 操作一般会被内核缓存,这种 I/O 被称作缓存 I/O。本文所介绍的文件访问机制不经过操作系统内核的缓存,数据直接在磁盘和应用程序地址空间进行传输,所以该文件访问的机制称作为直接 I/O... 阅读全文
posted @ 2013-03-29 13:28
lexus
阅读(240)
评论(0)
推荐(0)
摘要:
Linux 中直接 I/O 机制的介绍Linux 中直接 I/O 机制的介绍黄 晓晨, 软件工程师, IBM黄晓晨,IBM system Z 自动化技术支持软件工程师。简介:对于传统的操作系统来说,普通的 I/O 操作一般会被内核缓存,这种 I/O 被称作缓存 I/O。本文所介绍的文件访问机制不经过操作系统内核的缓存,数据直接在磁盘和应用程序地址空间进行传输,所以该文件访问的机制称作为直接 I/O... 阅读全文
posted @ 2013-03-29 13:13
lexus
阅读(273)
评论(0)
推荐(0)
摘要:
http_loadhttp_load - multiprocessing http test clientFetch the software. http_load runs multiple http fetches in parallel, to test the throughput of a web server. However unlike most such test client... 阅读全文
posted @ 2013-03-29 11:24
lexus
阅读(191)
评论(0)
推荐(0)
摘要:
rn - readiness notificationrn - readiness notificationContentsThe Problem: Efficient I/O multiplexing calls not yet standardizedOne solution: a Thin Wrapper around epoll et alDownloading rnInstalling ... 阅读全文
posted @ 2013-03-29 09:42
lexus
阅读(266)
评论(0)
推荐(0)
|