Hello PHP users,

I believe many people on this list run their PHP scripts
on IIS or Win32 Apache.  I have released yet another HTTP server
that I belive is well suited for running PHP programs.
The program is still in development quality but I'd appreciate
any comments from PHP users here.

Orenosv HTTP server
http://hp.vector.co.jp/authors/VA027031/orenosv/index_en.html

Thank you
Masato


Features:

- multi-processed hosting of ISAPI extensions
  if you have a PHP extension or other ISAPI extension that
  is not thread-safe, you can run it in a pool of single-threaded
  processes.  if you have an extension that is "leaky" in terms of
  memory or handles, you can restart processes after every N 
  executions.  these processes can exit on idle timeout so as to
  save system resources at off-peak times.

- network bandwidth control
  the server can send files in bandwidth-controlled mode (throttling).
  in this mode a single thread sends them in asynchronous fashion,
  supporting a huge number of downloading users.
  dynamically generated contents (like those from PHP) can be 
  fully buffered on disk, enabling the server to throttle-send these
  contents while freeing system resources as soon as the execution ends.
  
- optimized for NT4/Win2K (won't run on Win98/ME)
  is able to use TransmitFile() API where possible

- output compression (in next version)
  dynamic contents as well as static ones can be compressed on the fly,
  which will then be subjected to the normal buffering/chunking/throttling.
  
- No SSL/TLS, No virtual hosts




-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to