Path: csiph.com!usenet.pasdenom.info!news.albasani.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.013 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'url:pypi': 0.03; 'pypy': 0.07; 'python': 0.09; 'machines.': 0.09; 'cc:addr:python-list': 0.10; 'help?': 0.16; 'structures,': 0.16; 'tier': 0.16; 'wrote:': 0.17; 'thanks,': 0.18; 'memory': 0.18; '(or': 0.18; 'windows': 0.19; 'plus.': 0.22; 'cc:2**0': 0.23; 'somebody': 0.23; 'installed': 0.23; 'cc:no real name:2**0': 0.24; 'linux': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'header :User-Agent:1': 0.26; 'core': 0.27; 'there.': 0.28; 'developing': 0.28; 'run': 0.28; 'though.': 0.29; 'probably': 0.29; "i'm": 0.29; 'e.g.': 0.30; 'url:python': 0.32; 'running': 0.32; 'could': 0.32; 'times.': 0.33; 'server': 0.35; 'remote': 0.35; 'there': 0.35; 'ability': 0.36; 'serve': 0.36; 'but': 0.36; 'url:org': 0.36; 'alone': 0.36; 'modules': 0.36; 'should': 0.36; 'data': 0.37; 'subject:: ': 0.38; 'nothing': 0.38; 'short': 0.39; 'application': 0.40; 'most': 0.61; 'received:194': 0.61; 'stand': 0.61; 'different': 0.63; 'computers.': 0.84; 'multi-tier': 0.84; 'nagy': 0.84; 'clients,': 0.95 X-IronPort-AV: E=Sophos;i="4.80,359,1344204000"; d="scan'208";a="695287" X-Virus-Scanned: amavisd-new at zimbra.sequans.com Date: Mon, 03 Sep 2012 10:54:47 +0200 From: Jean-Michel Pichavant User-Agent: Mozilla-Thunderbird 2.0.0.24 (X11/20100328) MIME-Version: 1.0 To: Laszlo Nagy Subject: Re: Looking for an IPC solution References: <50410AD6.7080003@shopzeus.com> In-Reply-To: <50410AD6.7080003@shopzeus.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 26 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1346662495 news.xs4all.nl 6963 [2001:888:2000:d::a6]:36862 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:28345 Laszlo Nagy wrote: > There are just so many IPC modules out there. I'm looking for a > solution for developing a new a multi-tier application. The core > application will be running on a single computer, so the IPC should be > using shared memory (or mmap) and have very short response times. But > there will be a tier that will hold application state for clients, and > there will be lots of clients. So that tier needs to go to different > computers. E.g. the same IPC should also be accessed over TCP/IP. Most > messages will be simple data structures, nothing complicated. The > ability to run on PyPy would, and also to run on both Windows and > Linux would be a plus. > > I have seen a stand alone cross platform IPC server before that could > serve "channels", and send/receive messages using these channels. But > I don't remember its name and now I cannot find it. Can somebody > please help? > > Thanks, > > Laszlo > http://pypi.python.org/pypi/execnet ? It sends/receives messages through channels, probably not the only one though. It requires only python installed on the remote machines. JM