gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r9331 - in libmicrohttpd-docs/WWW: . download


From: gnunet
Subject: [GNUnet-SVN] r9331 - in libmicrohttpd-docs/WWW: . download
Date: Wed, 28 Oct 2009 13:47:12 -0600

Author: grothoff
Date: 2009-10-28 13:47:12 -0600 (Wed, 28 Oct 2009)
New Revision: 9331

Added:
   libmicrohttpd-docs/WWW/download/libmicrohttpd-0.4.4.tar.gz
Modified:
   libmicrohttpd-docs/WWW/index.html
   libmicrohttpd-docs/WWW/microhttpd.pdf
Log:
release

Added: libmicrohttpd-docs/WWW/download/libmicrohttpd-0.4.4.tar.gz
===================================================================
(Binary files differ)


Property changes on: libmicrohttpd-docs/WWW/download/libmicrohttpd-0.4.4.tar.gz
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Modified: libmicrohttpd-docs/WWW/index.html
===================================================================
--- libmicrohttpd-docs/WWW/index.html   2009-10-28 19:46:30 UTC (rev 9330)
+++ libmicrohttpd-docs/WWW/index.html   2009-10-28 19:47:12 UTC (rev 9331)
@@ -213,6 +213,20 @@
 first model if you want to block on providing response data in the
 callback, or the last model if you want to use a more event-driven
 model with one big select loop.
+<br>
+As a special scalability feature, MHD offers the use of a thread pool
+with the <tt>MHD_USE_SELECT_INTERNALLY</tt> mode.  As said before, by
+default this mode only uses a single thread.  With the thread pool
+option, it is possible to handle multiple connections with multiple
+threads.  The number of threads is specified using the 
+<tt>MHD_OPTION_THREAD_POOL_SIZE</tt>; any value greater than one for
+this option will activate the use of the thread pool.  In contrast to
+the <tt>MHD_USE_THREAD_PER_CONNECTION</tt> mode (where each thread
+handles one and only one connection), threads in the pool can handle a
+large number of concurrent connections.  Using
+<tt>MHD_USE_SELECT_INTERNALLY</tt> in combination with a thread pool
+is typically the most scalable (but also hardest to debug) mode of
+operation for MHD.
 </p>
 <p >
 The third threading model (used when no specific flag is given), uses

Modified: libmicrohttpd-docs/WWW/microhttpd.pdf
===================================================================
(Binary files differ)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]