On Thu, 26 Jun 2003, Greg Stein wrote: > On Fri, Jun 27, 2003 at 12:32:08AM +0100, Pier Fumagalli wrote: > >... > > Best way of doing things? Writing a connector for the servlet container > > using JNI that uses unix sockets, named pipes, or something which is > > actually faster than the usual TCP socket we use between Java and Apache, > > but embedding a JVM inside the Apache process space is a big nono... > > Oh, come on... show us your True Programmer Manliness(tm) and shove the data > over to the JVM via shared memory! > > :-) > > > Hmm. Wait. Java doesn't give you access to shared memory? oh, too bad...
JDK1.4 ( NIO ) supports memory maped files, which is a good step in the right direction ( it also adds select, etc ). And of course, a bit of JNI can do anything :-) Costin --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
