Matthias,<br><br>Thank you for replying on this.<br><br>The auto_delete&#39;s per connection is a good idea. I had considered it but it seemed like duplicating many bindings per connection per &#39;primary&#39; queue might have unnecessary overhead. I suppose there probably wouldn&#39;t be more than a few per user, but how does creating new queues and ~15 or so bindings for each affect system performance? The other reason for avoiding re-creation of bindings each time is that the topics are collected from a user-profile from a database. I really liked the exchange for this reason because it allowed for minimizing DB-calls. I realize this is probably a minor point though.<br>
<br>Lastly, the current &#39;primary&#39; queue allows me to store messages/events in it, so when the first client connects it can consume past messages and display them in a &quot;here&#39;s what you missed while you were away&quot; kind of case. I wouldn&#39;t be able to get this same behaviour with auto_delete queue&#39;s since (as far as I know) there&#39;s no way to &#39;synchronize&#39; their contents with the ones of the&#39; primary&#39; queue.<br>
<br>As for acknowledgements, I&#39;m not using them in this case so I&#39;m not too worried about that.<br><br>-Nemanja<br><br><br><div class="gmail_quote">On Thu, Apr 23, 2009 at 12:12 AM, Matthias Radestock <span dir="ltr">&lt;<a href="mailto:matthias@lshift.net">matthias@lshift.net</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Nemanja,<div class="im"><br>
<br>
Nemanja Stefanovic wrote:<br>
<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
What we want to allow though is for same user (or a default &#39;guest&#39; account) to log in from multiple places and receive from the same queue. Now one way to do this I suppose would be to create an exchange per user to fan out and have new temporary/auto_delete queue&#39;s for each connection<br>

</blockquote>
<br></div>
Why don&#39;t you simply create an auto_delete queue and bind it to the existing topic exchange exactly in the same way as the user&#39;s &quot;primary&quot; queue?<div class="im"><br>
<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
So I modified the RabbitMQ-server code to add another boolean attribute to each queue called &#39;broadcast&#39;. When you declare a queue, you can turn on &#39;broadcast&#39; (default is false) and that will make all the current/active consumers of the queue receive the message at once instead of round-robining to a single consumer.<br>

</blockquote>
<br></div>
How do acknowledgements work in this scheme?<br><font color="#888888">
<br>
<br>
Matthias.<br>
</font></blockquote></div><br>