dimitrik107@hotmail.com schrieb:
> In past job, I heard people talk about message queues in Java to
> communicate with other Java process on same host. I think their talking
[quoted text clipped - 8 lines]
> Another IPC is also acceptable anything. I already know about RMI.
> Anything else? Thanks.
Did your former colleagues discuss JMS, perhaps?
There are many ways of IPC, e. g. you could use: lock files, pipes,
sockets, TCP/IP, HTTP, RMI, Corba, ... I assume one could write pages of
possibilities.
Bye
Michael
dimitrik107@hotmail.com - 19 Aug 2006 23:17 GMT
> Did your former colleagues discuss JMS, perhaps?
>
[quoted text clipped - 4 lines]
> Bye
> Michael
You may be right. I look for the fastest. Shared memory using memory
maps is fast, but dont think java has it. I want similar performance,
which should I use? I know RMI do not compare to a Shared memory in
unix. Thank you for help.
Michael Rauscher - 20 Aug 2006 00:28 GMT
dimitrik107@hotmail.com schrieb:
>> Did your former colleagues discuss JMS, perhaps?
>>
[quoted text clipped - 9 lines]
> which should I use? I know RMI do not compare to a Shared memory in
> unix. Thank you for help.
One possibility for shared memory: threads.
Bye
Michael