Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Looking for an IPC solution
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  22 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Laszlo Nagy  
View profile  
 More options Aug 31 2012, 3:22 pm
Newsgroups: comp.lang.python
From: Laszlo Nagy <gand...@shopzeus.com>
Date: Fri, 31 Aug 2012 21:04:54 +0200
Local: Fri, Aug 31 2012 3:04 pm
Subject: Looking for an IPC solution
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


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Marco Nawijn  
View profile  
 More options Aug 31 2012, 4:25 pm
Newsgroups: comp.lang.python
From: Marco Nawijn <naw...@gmail.com>
Date: Fri, 31 Aug 2012 13:25:11 -0700 (PDT)
Local: Fri, Aug 31 2012 4:25 pm
Subject: Re: Looking for an IPC solution

Hi,

Are you aware and have you considered zeromq (www.zeromq.org)? It does not provide a messaging system, but you could use things like simple strings (json) or more complicated things like Protobuf.

Marco


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Marco Nawijn  
View profile  
 More options Aug 31 2012, 4:25 pm
Newsgroups: comp.lang.python
From: Marco Nawijn <naw...@gmail.com>
Date: Fri, 31 Aug 2012 13:25:11 -0700 (PDT)
Local: Fri, Aug 31 2012 4:25 pm
Subject: Re: Looking for an IPC solution

Hi,

Are you aware and have you considered zeromq (www.zeromq.org)? It does not provide a messaging system, but you could use things like simple strings (json) or more complicated things like Protobuf.

Marco


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Paul Rubin  
View profile  
 More options Aug 31 2012, 4:36 pm
Newsgroups: comp.lang.python
From: Paul Rubin <no.em...@nospam.invalid>
Date: Fri, 31 Aug 2012 13:36:42 -0700
Local: Fri, Aug 31 2012 4:36 pm
Subject: Re: Looking for an IPC solution

Laszlo Nagy <gand...@shopzeus.com> writes:
> application will be running on a single computer, so the IPC should be
> using shared memory (or mmap) and have very short response times.

Zeromq (suggested by someone) is an option since it's pretty fast for
most purposes, but I don't think it uses shared memory.  The closest
thing I can think of to what you're asking is MPI, intended for
scientific computation.  I don't know of general purpose IPC that uses
it though I've thought it would be interesting.  There are also some
shared memory modules around, including POSH for shared objects, but
they don't switch between memory and sockets AFAIK.

Based on your description, maybe what you really want is Erlang, or
something like it for Python.  There would be more stuff to do than just
supply an IPC library.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Antoine Pitrou  
View profile  
 More options Aug 31 2012, 5:06 pm
Newsgroups: comp.lang.python
From: Antoine Pitrou <solip...@pitrou.net>
Date: Fri, 31 Aug 2012 21:05:27 +0000 (UTC)
Local: Fri, Aug 31 2012 5:05 pm
Subject: Re: Looking for an IPC solution
Laszlo Nagy <gandalf <at> shopzeus.com> writes:

> 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.

How about the standard multiprocessing module? It supports shared memory, remote
processes, and will most probably work under PyPy:
http://docs.python.org/library/multiprocessing.html

Regards

Antoine.

--
Software development and contracting: http://pro.pitrou.net


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Laszlo Nagy  
View profile  
 More options Aug 31 2012, 5:13 pm
Newsgroups: comp.lang.python
From: Laszlo Nagy <gand...@shopzeus.com>
Date: Fri, 31 Aug 2012 23:10:47 +0200
Local: Fri, Aug 31 2012 5:10 pm
Subject: Re: Looking for an IPC solution
> Zeromq (suggested by someone) is an option since it's pretty fast for
> most purposes, but I don't think it uses shared memory.

Interesting question. The documentation says:

http://api.zeromq.org/2-1:zmq-ipc

The inter-process transport is currently only implemented on operating
systems that provide UNIX domain sockets.

(OFF: Would it be possible to add local IPC support for Windows using
mmap()? I have seen others doing it.)

At least, it is functional on Windows, and it excels on Linux. I just
need to make transports configureable. Good enough for me.

> The closest
> thing I can think of to what you're asking is MPI, intended for
> scientific computation.  I don't know of general purpose IPC that uses
> it though I've thought it would be interesting.  There are also some
> shared memory modules around, including POSH for shared objects, but
> they don't switch between memory and sockets AFAIK.

> Based on your description, maybe what you really want is Erlang, or
> something like it for Python.  There would be more stuff to do than just
> supply an IPC library.

Yes, although I would really like to do this job in Python. I'm going to
make some tests with zeromq. If the speed is good for local
inter-process communication, then I'll give it a try.

Thanks,

    Laszlo


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Wolfgang Keller  
View profile  
 More options Sep 1 2012, 8:55 am
Newsgroups: comp.lang.python
From: Wolfgang Keller <felip...@gmx.net>
Date: Sat, 1 Sep 2012 14:55:35 +0200
Local: Sat, Sep 1 2012 8:55 am
Subject: Re: Looking for an IPC solution

> 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.

Probably the fastest I/RPC implementation for Python should be
OmniOrbpy:

http://omniorb.sourceforge.net/

It's cross-platform, language-independent and standard-(Corba-)
compliant.

> 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?

If it's just for "messaging", Spread should be interesting:

http://www.spread.org/

Also cross-platform & language-independent.

Sincerely,

Wolfgang


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aaron Brady  
View profile  
 More options Sep 1 2012, 10:10 pm
Newsgroups: comp.lang.python
From: Aaron Brady <castiro...@gmail.com>
Date: Sat, 1 Sep 2012 19:10:43 -0700 (PDT)
Local: Sat, Sep 1 2012 10:10 pm
Subject: Re: Looking for an IPC solution

Hi Laszlo,

There aren't a lot of ways to create a Python object in an "mmap" buffer.  "mmap" is conducive to arrays of arrays.  For variable-length structures like strings and lists, you need "dynamic allocation".  The C functions "malloc" and "free" allocate memory space, and file creation and deletion routines operate on disk space.  However "malloc" doesn't allow you to allocate memory space within memory that's already allocated.  Operating systems don't provide that capability, and doing it yourself amounts to creating your own file system.  If you did, you still might not be able to use existing libraries like the STL or Python, because one address might refer to different locations in different processes.

One solution is to keep a linked list of free blocks within your "mmap" buffer.  It is prone to slow access times and segment fragmentation.  Another solution is to create many small files with fixed-length names.  The minimum file size on your system might become prohibitive depending on your constraints, since a 4-byte integer could occupy 4096 bytes on disk or more.  Or you can serialize the arguments and return values of your functions, and make requests to a central process.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aaron Brady  
View profile  
 More options Sep 1 2012, 10:10 pm
Newsgroups: comp.lang.python
From: Aaron Brady <castiro...@gmail.com>
Date: Sat, 1 Sep 2012 19:10:43 -0700 (PDT)
Local: Sat, Sep 1 2012 10:10 pm
Subject: Re: Looking for an IPC solution

Hi Laszlo,

There aren't a lot of ways to create a Python object in an "mmap" buffer.  "mmap" is conducive to arrays of arrays.  For variable-length structures like strings and lists, you need "dynamic allocation".  The C functions "malloc" and "free" allocate memory space, and file creation and deletion routines operate on disk space.  However "malloc" doesn't allow you to allocate memory space within memory that's already allocated.  Operating systems don't provide that capability, and doing it yourself amounts to creating your own file system.  If you did, you still might not be able to use existing libraries like the STL or Python, because one address might refer to different locations in different processes.

One solution is to keep a linked list of free blocks within your "mmap" buffer.  It is prone to slow access times and segment fragmentation.  Another solution is to create many small files with fixed-length names.  The minimum file size on your system might become prohibitive depending on your constraints, since a 4-byte integer could occupy 4096 bytes on disk or more.  Or you can serialize the arguments and return values of your functions, and make requests to a central process.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jean-Michel Pichavant  
View profile  
 More options Sep 3 2012, 4:54 am
Newsgroups: comp.lang.python
From: Jean-Michel Pichavant <jeanmic...@sequans.com>
Date: Mon, 03 Sep 2012 10:54:47 +0200
Local: Mon, Sep 3 2012 4:54 am
Subject: Re: Looking for an IPC solution

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


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
vasudevram  
View profile  
 More options Sep 3 2012, 5:43 pm
Newsgroups: comp.lang.python
From: vasudevram <vasudev...@gmail.com>
Date: Mon, 3 Sep 2012 14:43:19 -0700 (PDT)
Local: Mon, Sep 3 2012 5:43 pm
Subject: Re: Looking for an IPC solution

Though I'm not the OP, thanks for the info. Will put Spread on my stack to check out ...

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gelonida N  
View profile  
 More options Sep 6 2012, 5:24 am
Newsgroups: comp.lang.python
From: Gelonida N <gelon...@gmail.com>
Date: Thu, 06 Sep 2012 11:23:59 +0200
Local: Thurs, Sep 6 2012 5:23 am
Subject: Re: Looking for an IPC solution
On 08/31/2012 11:05 PM, Antoine Pitrou wrote:

> Laszlo Nagy <gandalf <at> shopzeus.com> writes:

> How about the standard multiprocessing module? It supports shared memory, remote
> processes, and will most probably work under PyPy:
> http://docs.python.org/library/multiprocessing.html

I always thought, that the multiprocessing module does NOT use shared
memory (at least not under windows)

My understanding was, that it forks (or whateveri is closest to fork
under windows) and uses sockets and pickle to communicate between the
processes.

I would be very interested in a cross platform shared mem solution for
python.
Could you please point me to the right section.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gelonida N  
View profile  
 More options Sep 6 2012, 5:30 am
Newsgroups: comp.lang.python
From: Gelonida N <gelon...@gmail.com>
Date: Thu, 06 Sep 2012 11:25:34 +0200
Local: Thurs, Sep 6 2012 5:25 am
Subject: Re: Looking for an IPC solution
On 08/31/2012 11:05 PM, Antoine Pitrou wrote:
> Laszlo Nagy <gandalf <at> shopzeus.com> writes:

> How about the standard multiprocessing module? It supports shared
> memory, remote processes, and will most probably work under PyPy:
> http://docs.python.org/library/multiprocessing.html

I always thought, that the multiprocessing module does NOT use shared
memory (at least not under windows)

My understanding was, that it forks (or whateveri is closest to fork
under windows) and uses sockets and pickle to communicate between the
processes. However perhap s I just misunderstood I never spent time to
dive into the internals of multiprocessing.

I would be very interested in a cross platform shared mem solution for
python.
Could you please point me to the right section.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gelonida N  
View profile  
 More options Sep 6 2012, 5:59 am
Newsgroups: comp.lang.python
From: Gelonida N <gelon...@gmail.com>
Date: Thu, 06 Sep 2012 11:59:35 +0200
Local: Thurs, Sep 6 2012 5:59 am
Subject: Re: Looking for an IPC solution
On 08/31/2012 11:05 PM, Antoine Pitrou wrote:

> Laszlo Nagy <gandalf <at> shopzeus.com> writes:

> How about the standard multiprocessing module? It supports shared memory, remote
> processes, and will most probably work under PyPy:
> http://docs.python.org/library/multiprocessing.html

I always thought, that the multiprocessing module does NOT use shared
memory (at least not under windows)

My understanding was, that it forks (or whateveri is closest to fork
under windows) and uses sockets and pickle to communicate between the
processes.

I would be very interested in a cross platform shared mem solution for
Python.

The intention would be to excahnge mutexes and ctypes kind of data
structures

Could you please point me to the right section.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Laszlo Nagy  
View profile  
 More options Sep 6 2012, 6:00 am
Newsgroups: comp.lang.python
From: Laszlo Nagy <gand...@shopzeus.com>
Date: Thu, 06 Sep 2012 12:00:10 +0200
Local: Thurs, Sep 6 2012 6:00 am
Subject: Re: Looking for an IPC solution

> Hi Laszlo,

> There aren't a lot of ways to create a Python object in an "mmap" buffer.  "mmap" is conducive to arrays of arrays.  For variable-length structures like strings and lists, you need "dynamic allocation".  The C functions "malloc" and "free" allocate memory space, and file creation and deletion routines operate on disk space.  However "malloc" doesn't allow you to allocate memory space within memory that's already allocated.  Operating systems don't provide that capability, and doing it yourself amounts to creating your own file system.  If you did, you still might not be able to use existing libraries like the STL or Python, because one address might refer to different locations in different processes.

> One solution is to keep a linked list of free blocks within your "mmap" buffer.  It is prone to slow access times and segment fragmentation.  Another solution is to create many small files with fixed-length names.  The minimum file size on your system might become prohibitive depending on your constraints, since a 4-byte integer could occupy 4096 bytes on disk or more.  Or you can serialize the arguments and return values of your functions, and make requests to a central process.

I'm not sure about the technical details, but I was said that
multiprocessing module uses mmap() under windows. And it is faster than
TCP/IP. So I guess the same thing could be used from zmq, under Windows.
(It is not a big concern, I plan to operate server on Unix. Some clients
might be running on Windows, but they will use TCP/IP.)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Laszlo Nagy  
View profile  
 More options Sep 6 2012, 6:04 am
Newsgroups: comp.lang.python
From: Laszlo Nagy <gand...@shopzeus.com>
Date: Thu, 06 Sep 2012 12:04:21 +0200
Local: Thurs, Sep 6 2012 6:04 am
Subject: Re: Looking for an IPC solution

>> How about the standard multiprocessing module? It supports shared
>> memory, remote processes, and will most probably work under PyPy:
>> http://docs.python.org/library/multiprocessing.html

> I always thought, that the multiprocessing module does NOT use shared
> memory (at least not under windows)

It uses mmap() under windows. (I'm not an expert, but this is what I was
said by others.) I did not know that multiprocessing can be used over
TCP/IP. :) Probably I'll use zmq instead, because it has other nice
features (auto reconnect, publisher/subscriber, multicast etc.)

> I would be very interested in a cross platform shared mem solution for
> python.
> Could you please point me to the right section.

As far as I know, POSIX compatible shared memory does not exist on
Windows. I remember a thread about this on the PostgreSQL mailing list -
the Windows version of PostgreSQL somehow emulates shared memory too. I
wanted to use shared memory because response times are much faster than
TCP/IP.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Laszlo Nagy  
View profile  
 More options Sep 6 2012, 6:13 am
Newsgroups: comp.lang.python
From: Laszlo Nagy <gand...@shopzeus.com>
Date: Thu, 06 Sep 2012 12:13:25 +0200
Local: Thurs, Sep 6 2012 6:13 am
Subject: Re: Looking for an IPC solution

> Probably the fastest I/RPC implementation for Python should be
> OmniOrbpy:

> http://omniorb.sourceforge.net/

> It's cross-platform, language-independent and standard-(Corba-)
> compliant.

I don't want to use IDL though. Clients will be written in Python, and
it would be a waste of time to write IDL files.

>> 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?
> If it's just for "messaging", Spread should be interesting:

> http://www.spread.org/

> Also cross-platform & language-independent.

Looks promising. This is what I have found about it:

http://stackoverflow.com/questions/35490/spread-vs-mpi-vs-zeromq

> So, it really depends on whether you are trying to build a parallel
> system or distributed system. They are related to each other, but the
> implied connotations/goals are different. Parallel programming deals
> with increasing computational power by using multiple computers
> simultaneously. Distributed programming deals with reliable
> (consistent, fault-tolerant and highly available) group of computers.

I don't know the full theory behind distributed programming or parallel
programming. ZMQ seems easier to use.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Angel  
View profile  
 More options Sep 6 2012, 4:55 pm
Newsgroups: comp.lang.python
From: Dave Angel <d...@davea.name>
Date: Thu, 06 Sep 2012 16:54:00 -0400
Subject: Re: Looking for an IPC solution
On 09/06/2012 04:33 PM, Dennis Lee Bieber wrote:

> <snip>
> Note that this difference mainly applies to how the processes are
> themselves are created... How the library wraps shared data is
> possibly different (I've never understood how a "fork" process can
> avoid memory conflicts if it has write access to common virtual memory
> blocks).

Here's an approximate description of fork, at least for the memory
aspects.   During a fork, the virtual memory table is copied (that's
descriptors for all mapped and allocated memory) but the memory itself
is NOT.  All the new descriptors are labeled "COW"  (copy-on-write).  As
that process executes, the first time it writes in a particular memory
block, the OS gets a memory fault, which it fixes by allocating a block
of the same size, copying the memory block to the new one, and labeling
it read/write. Subsequent accesses to the same block are normal, with no
trace of the fork remaining.

Now, there are lots of details that this blurs over, but it turns out
that many times the new process doesn't change very much.  For example,
all the mappings to the executable and to shared libraries are
theoretically readonly.  In fact, they might have also been labeled COW
even for the initial execution of the program.  Another place that's
blurry is just what the resolution of this table actually is.  There are
at least two levels of tables.  The smallest increment on the Pentium
family is 4k.

--

DaveA


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ramchandra Apte  
View profile  
 More options Sep 8 2012, 11:11 am
Newsgroups: comp.lang.python
From: Ramchandra Apte <maniandra...@gmail.com>
Date: Sat, 8 Sep 2012 08:11:48 -0700 (PDT)
Local: Sat, Sep 8 2012 11:11 am
Subject: Re: Looking for an IPC solution

From my OS development experience, there are two sizes of pages - 4K and 1 byte

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ramchandra Apte  
View profile  
 More options Sep 8 2012, 11:11 am
Newsgroups: comp.lang.python
From: Ramchandra Apte <maniandra...@gmail.com>
Date: Sat, 8 Sep 2012 08:11:48 -0700 (PDT)
Local: Sat, Sep 8 2012 11:11 am
Subject: Re: Looking for an IPC solution


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Andrew Cooper  
View profile  
 More options Sep 9 2012, 3:14 pm
Newsgroups: comp.lang.python
From: Andrew Cooper <am...@cam.ac.uk>
Date: Sun, 09 Sep 2012 20:14:41 +0100
Local: Sun, Sep 9 2012 3:14 pm
Subject: Re: Looking for an IPC solution
On 08/09/2012 16:11, Ramchandra Apte wrote:

No - pages are always 4k (or bigger given superpage support).

You are probably thinking about the granularity bit in descriptor
entries, which is relevant for segmentation.  The granularity bit
changes the limit between 1 byte or 4K chunks, as there are only 20 bits
of limit space in a 32bit {L,G}DT entry.

However, in the modern days of paging, segmentation support is only for
legacy compatibility.

~Andrew


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Adam Tauno Williams  
View profile  
 More options Sep 22 2012, 11:38 am
Newsgroups: comp.lang.python
From: Adam Tauno Williams <awill...@whitemice.org>
Date: Sat, 22 Sep 2012 11:21:09 -0400
Local: Sat, Sep 22 2012 11:21 am
Subject: Re: Looking for an IPC solution

On Fri, 2012-08-31 at 21:04 +0200, Laszlo Nagy wrote:
> 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?

I strongly recommend RabbitMQ - http://www.rabbitmq.com/

Just having a real and robust message broker is fabulous.  It is
tempting at first to want to avoid 'external' components; but
development on top of a fully-featured message bus is extremely
addictive.  Working with Rabbit & AMQ is very pleasant and every time i
have a uh-oh-i-need-to-deal-with... moment I discover that
aha-rabbit-can-deal-with-that and back-to-my-application.

<http://www.whitemiceconsulting.com/2011/12/idjits-guide-to-installing...>

<http://www.whitemiceconsulting.com/2011/12/enabling-rabbitmq-manageme...>

<http://www.whitemiceconsulting.com/2011/10/implementing-queue-expirat...>

  signature.asc
< 1K Download

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »