Chinaunix首页 | 论坛 | 博客
  • 博客访问: 124648
  • 博文数量: 8
  • 博客积分: 1612
  • 博客等级: 上尉
  • 技术积分: 220
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-07 13:55
文章分类
文章存档

2012年(6)

2011年(1)

2010年(1)

分类: LINUX

2012-03-12 14:27:14


An experimental variant of the standard MPM


MPM


mpm_event_module


event.c

Summary Warning

This MPM is experimental, so it may or may not work as expected.

The Multi-Processing Module (MPM) is designed to allow more requests to be served simultaneously by passing off some processing work to supporting threads, freeing up the main threads to work on new requests. It is based on the MPM, which implements a hybrid multi-process multi-threaded server. Run-time configuration directives are identical to those provided by .

To use the MPM, add --with-mpm=event to the script's arguments when building the .

This MPM tries to fix the 'keep alive problem' in HTTP. After a client completes the first request, the client can keep the connection open, and send further requests using the same socket. This can save signifigant overhead in creating TCP connections. However, Apache traditionally keeps an entire child process/thread waiting for data from the client, which brings its own disadvantages. To solve this problem, this MPM uses a dedicated thread to handle both the Listening sockets, and all sockets that are in a Keep Alive state.

The MPM assumes that the underlying apr_pollset implementation is reasonably threadsafe. This enables the MPM to avoid excessive high level locking, or having to wake up the listener thread in order to send it a keep-alive socket. This is currently only compatible with KQueue and EPoll.

This MPM depends on 's atomic compare-and-swap operations for thread synchronization. If you are compiling for an x86 target and you don't need to support 386s, or you are compiling for a SPARC and you don't need to run on pre-UltraSPARC chips, add --enable-nonportable-atomics=yes to the script's arguments. This will cause APR to implement atomic operations using efficient opcodes not available in older CPUs.

This MPM does not perform well on older platforms which lack good threading, but the requirement for EPoll or KQueue makes this moot.

  • To use this MPM on FreeBSD, FreeBSD 5.3 or higher is recommended. However, it is possible to run this MPM on FreeBSD 5.2.1, if you use libkse (see man libmap.conf).
  • For NetBSD, at least version 2.0 is recommended.
  • For Linux, a 2.6 kernel is recommended. It is also necessary to ensure that your version of glibc has been compiled with support for EPoll.

At present, this MPM is incompatible with , and other input filters.

阅读(7442) | 评论(0) | 转发(0) |
0

上一篇:RPM包制作

下一篇:没有了

给主人留下些什么吧!~~