IPC share queue

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Joe Wong

    IPC share queue

    Hi, the buildin Queue() class is good to use among multiple threads in the program. Is there anything similar to this across process boundary?

    Regards,

    -- Wong

  • Michael Hudson

    #2
    Re: IPC share queue

    "Joe Wong" <joewong@mango. cc> writes:
    [color=blue]
    > Hi, the buildin Queue() class is good to use among multiple threads
    > in the program. Is there anything similar to this across process
    > boundary?[/color]

    I don't believe so. There's POSH: http://poshmodule.sourceforge.net/,
    which could probably be used to build something similar. I believe
    POSH is x86 only at the moment, but that's probably fixable by someone
    with sufficient knowledge and energy...

    Cheers,
    mwh

    --
    The Internet is full. Go away.
    -- http://www.disobey.com/devilshat/ds011101.htm

    Comment

    • Irmen de Jong

      #3
      Re: IPC share queue

      Joe Wong wrote:
      [color=blue]
      >
      > Hi, the buildin Queue() class is good to use among multiple threads in
      > the program. Is there anything similar to this across process boundary?[/color]

      Check out Pyro's Event Server (http://pyro.sourceforge.net)
      It might suit your needs...

      --Irmen

      Comment

      Working...