Browse thread
ocamlnet and kernel poll
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Gerd Stolpmann <info@g...> |
| Subject: | Re: [Caml-list] ocamlnet and kernel poll |
Am Donnerstag, den 11.09.2008, 13:43 +0100 schrieb Joel Reymont: > Suppose I want to build a server that runs on top of ocamlnet and > handles 10k+ connections. > > ocamlnet seems to use select exclusively. There's also netplex in ocamlnet, which is a kind of fork framework. I don't know which protocol you want to use. For instance, you can arrange that netplex starts 100 processes and every process handles 100 connections. > Any suggestions on how to add kernel poll? Is this possible even? I'm in the middle of changing ocamlnet here, so we can have more flexibility for choosing the kind of event polling. Look at the svn version: https://godirepo.camlcity.org/svn/lib-ocamlnet2/trunk/code/ There's a lot of new stuff in the src/netsys directory. In the future, all polling will be based on the pollset class type (src/netsys/netsys_pollset.mli). There is currently an implementation that uses the poll() syscall (src/netsys/netsys_pollset_posix.mli) and another one for Win32 (src/netsys/netsys_pollset_win32.mli - limited to sockets and named pipes for now). As this is a class type you can also go ahead, and implement it for every kernel mechanism you like, and just you your class instead of the classes provided by ocamlnet. I'll add some more mechanisms later (any help is welcome). You can turn these pollsets into event_system by using src/equeue/unixqueue2.mli. This is not very much tested, however, and there is no support for multi-threading yet in this module. Many ocamlnet modules allow to inject whatever event_system you like to have (should be all modules in the future). All this is experimental for now. I have tested it only with small programs, not with large production systems. But maybe it's an option for you to use the svn version. Gerd > > Thanks, Joel > > -- > wagerlabs.com > > _______________________________________________ > Caml-list mailing list. Subscription management: > http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list > Archives: http://caml.inria.fr > Beginner's list: http://groups.yahoo.com/group/ocaml_beginners > Bug reports: http://caml.inria.fr/bin/caml-bugs > -- ------------------------------------------------------------ Gerd Stolpmann * Viktoriastr. 45 * 64293 Darmstadt * Germany gerd@gerd-stolpmann.de http://www.gerd-stolpmann.de Phone: +49-6151-153855 Fax: +49-6151-997714 ------------------------------------------------------------