Index of /~abo/projects/medusa/

NameLast ModifiedSizeType
../ -  Directory
demo/2002-Mar-28 15:03:00-  Directory
docs/2002-Mar-28 15:03:00-  Directory
test/2002-Mar-28 15:03:00-  Directory
thread/2002-Mar-28 15:02:58-  Directory
CHANGES.txt2002-Mar-28 12:02:381.4Ktext/plain;charset=utf-8
INSTALL.txt2002-Mar-21 18:15:054.6Ktext/plain;charset=utf-8
LICENSE.txt2002-Mar-21 18:15:051.5Ktext/plain;charset=utf-8
MANIFEST2002-Mar-28 12:02:381.0Kapplication/octet-stream
Makefile2002-Mar-21 18:15:050.1Ktext/x-makefile;charset=utf-8
PKG-INFO2002-Mar-28 12:02:380.2Kapplication/octet-stream
README.txt2002-Mar-21 18:15:051.7Ktext/plain;charset=utf-8
TODO.txt2002-Mar-28 12:02:380.4Ktext/plain;charset=utf-8
__init__.py2002-Mar-21 18:15:050.1Ktext/x-python;charset=utf-8
asynchat.py2002-Mar-25 11:04:5713.3Ktext/x-python;charset=utf-8
auth_handler.py2002-Mar-28 12:02:384.6Ktext/x-python;charset=utf-8
chat_server.py2002-Mar-21 18:15:054.4Ktext/x-python;charset=utf-8
counter.py2002-Mar-28 12:02:381.4Ktext/x-python;charset=utf-8
default_handler.py2002-Mar-28 12:02:386.1Ktext/x-python;charset=utf-8
event_loop.py2002-Mar-21 18:15:052.9Ktext/x-python;charset=utf-8
fifo.py2002-Mar-21 18:15:055.1Ktext/x-python;charset=utf-8
filesys.py2002-Mar-28 13:16:4210.9Ktext/x-python;charset=utf-8
ftp_server.py2002-Mar-28 13:16:4239.6Ktext/x-python;charset=utf-8
http_date.py2002-Mar-21 18:15:053.3Ktext/x-python;charset=utf-8
http_server.py2002-Mar-28 13:16:4224.7Ktext/x-python;charset=utf-8
logger.py2002-Mar-21 18:15:057.8Ktext/x-python;charset=utf-8
m_syslog.py2002-Mar-21 18:15:056.8Ktext/x-python;charset=utf-8
medusa.prj2002-Mar-28 15:02:587.8Kapplication/octet-stream
medusa_gif.py2000-Nov-05 16:00:292.7Ktext/x-python;charset=utf-8
monitor.py2002-Mar-28 12:02:3810.8Ktext/x-python;charset=utf-8
monitor_client.py2002-Mar-21 18:15:053.2Ktext/x-python;charset=utf-8
monitor_client_win32.py2002-Mar-21 18:15:051.3Ktext/x-python;charset=utf-8
producers.py2002-Mar-25 10:27:069.1Ktext/x-python;charset=utf-8
put_handler.py2002-Mar-21 18:15:053.2Ktext/x-python;charset=utf-8
redirecting_handler.py2002-Mar-21 18:15:051.3Ktext/x-python;charset=utf-8
resolver.py2002-Mar-21 18:15:0515.1Ktext/x-python;charset=utf-8
rpc_client.py2002-Mar-21 18:15:059.4Ktext/x-python;charset=utf-8
rpc_server.py2002-Mar-21 18:15:059.7Ktext/x-python;charset=utf-8
script_handler.py2002-Mar-21 18:15:056.4Ktext/x-python;charset=utf-8
setup.py2002-Mar-28 12:02:380.4Ktext/x-python;charset=utf-8
status_handler.py2002-Mar-28 12:02:389.1Ktext/x-python;charset=utf-8
unix_user_handler.py2002-Mar-21 18:15:052.3Ktext/x-python;charset=utf-8
virtual_handler.py2002-Mar-21 18:15:051.7Ktext/x-python;charset=utf-8
xmlrpc_handler.py2002-Mar-21 18:15:052.9Ktext/x-python;charset=utf-8
Medusa is a 'server platform' -- it provides a framework for
implementing asynchronous socket-based servers (TCP/IP and on Unix,
Unix domain sockets).

An asynchronous socket server is a server that can communicate with
many other socket clients and servers simultaneously, by multiplexing
I/O within a single process/thread.  In the context of an HTTP server,
this means a single process can serve hundreds or even thousands of
clients, depending only on the operating system's configuration and
limitations.

There are several advantages to this approach:
     
  o  performance - no fork() or thread() start-up costs per hit.

  o  scalability - the overhead per client can be kept rather small,
     on the order of several kilobytes of memory.

  o  persistence - a single-process server can easily coordinate the
     actions of several different connections.  This makes things like
     proxy servers and gateways easy to implement.  It also makes it
     possible to share resources like database handles.

Medusa includes HTTP, FTP, and 'monitor' (remote python interpreter)
servers.  Medusa can simultaneously support several instances of
either the same or different server types - for example you could
start up two HTTP servers, an FTP server, and a monitor server.  Then
you could connect to the monitor server to control and manipulate
medusa while it is running.

Other servers and clients have been written (SMTP, POP3, NNTP), and
several are in the planning stages.  

Medusa was originally written by Sam Rushing <rushing@nightmare.com>,
and its original Web page is at <http://www.nightmare.com/medusa/>. After
Sam moved on to other things, A.M. Kuchling <akuchlin@mems-exchange.org> 
took over maintenance of the Medusa package.

--amk

lighttpd/1.4.69