Tagged Questions
Publish/subscribe is a messaging pattern where senders (publishers) of messages do not program the messages to be sent directly to specific receivers (subscribers). Rather, published messages are characterized into classes, without knowledge of what, if any, subscribers there may be. Subscribers express interest in one or more classes, and only receive messages that are of interest, without knowledge of what, if any, publishers there are.
31
votes
3answers
6k views
Faye vs. Socket.IO (and Juggernaut)
Socket.IO seems to be the most popular and active WebSocket emulation library. Juggernaut uses it to create a complete pub/sub system.
Faye is also popular and active, and has its own javascript ...
13
votes
1answer
468 views
Python - How are signals different from pubsub?
Django and Flask make use of signals — the latter uses the Blinker library. In the context of Python, Blinker and the Python pubsub library, how do signals and pubsub compare? When would I use one or ...
11
votes
1answer
348 views
How to implement a light pub-sub service on App Engine?
During his Google I/O 2009 "Offline processing on App Engine: A look ahead" presentation (video, slides), Brett Slatkin presents the Task Queue service.
He states that
Pub-sub systems maximize ...
8
votes
4answers
2k views
lightweight publish/subscribe framework in java
Is there a good lightweight framework for java that provides the publish/subscribe pattern?
Some ideal features
Support for generics
Registration of multiple subscribers to a publisher
API ...
8
votes
6answers
6k views
Event Aggregator Implementation Sample / Best Practices
I'm looking for samples / best practices of Event Aggregator implementation.
Anyone help ?
7
votes
3answers
258 views
Realtime web libraries - replace hookbox with socket.io or what?
I've got a couple projects that were built using hookbox to manage real-time message passing between web clients and servers. Hookbox was great -- it totally abstracted the transport layer, exposing ...
7
votes
5answers
2k views
jQuery plugin for Event Driven Architecture?
Are there any Event Driven Architecture jQuery plugins?
Step 1: Subscribing
The subscribers subscribe to the event handler in the middle, and pass in a callback method, as well as the name of the ...
6
votes
1answer
168 views
Is publishing/subscribing to events after UI rendering a best practice regardless of framework?
I've inherited a rather large Javascript/ExtJS3 code base, and there are many instances of invoking events inside of the overridden initComponent method, after the call to ...
6
votes
5answers
2k views
Pub/sub implementation in nodeJS
I've been playing around with different publish/subscribe implementations for nodeJS and was wondering which one would be best for a specific application. The requirements of the application involve ...
6
votes
2answers
482 views
Handling dropped clients in a duplex binding WCF application
We are using a pub-sub model in our WCF application that pretty much follows the Microsoft sample: Design Patterns: List-Based Publish-Subscribe.
Whilst the service provides a notion of subscribe() ...
6
votes
8answers
3k views
Best Publish/Subscribe “Middleware”
I'm in the market for a good open source network based Pub/Sub (observer pattern) library. I haven't found any I like:
JMS - tied to Java, treats message contents as dumb binary blobs
NDDS - $$, ...
5
votes
2answers
495 views
How to use ServiceStack Redis in a web application to take advantage of pub / sub paradigm
I am interested in the Pub/Sub paradigm in order to provide a notifications system (ie : like Facebook), especially in a web application which has publishers (in several web applications on the same ...
5
votes
1answer
483 views
Help with “Scalable JavaScript Application Architecture”
I am building a large javascript application and I decided to use Nicholas Zakas' scalable application architecture design:
http://developer.yahoo.com/yui/theater/video.php?v=zakas-architecture
...
5
votes
2answers
990 views
Why does Redis have Pub/Sub capabilities?
Why does Redis, a datastore, have Pub/Sub features? My first thought is that it's the wrong layer to implement such a thing. But maybe I need to think outside the box.
4
votes
1answer
48 views
Using Node.js to listen to key events on Redis
I need to know when data is written on specific keys on a Redis store.
Is there any way to listen to Redis key events using Node.js or do I have to use the pub/sub utilities?
In the second case, what ...
4
votes
1answer
130 views
ZMQ Pub-Sub Program Failure When Losing Network Connectivity
I have a simple pub-sub setup on a mid-sized network, using ZMQ 2.1. Although some subscribers are using C# bindings, others are using Python bindings, and the issue I'm having is the same for ...
4
votes
1answer
295 views
4
votes
1answer
454 views
PubSub/Loosely Coupled & MVC patterns in Javascript
Ok, i'm a newbie in this, i've been trying to study MVC patterns and Publish/Subscription patterns in Javascript/jQuery, however i believe that i haven't grasped the concept entirely.
Since i've been ...
4
votes
2answers
2k views
NServiceBus Publish/Subscribe Question
We are trying to find an elegant solution for reporting exceptions generated from systems across our infrastructure that's easier to operate on than viewing e-mail or checking log files. The ...
4
votes
8answers
2k views
What technologies are available for a publish/subscribe model using .NET?
I'm currently working on an application where one component of the application needs to interact with multiple other system components based on certain events. These events occur based on many ...
4
votes
2answers
733 views
comet vs pubsub..?
may i know what is the different between these 2 approach ? can explain in lay man terms?
4
votes
1answer
6k views
Long-running callback contract via WCF duplex channel - alternative design patterns?
I have a Windows service that logs speed readings from a radar gun to a database. In addition, I made the service a WCF server. I have a Forms and a CF client that subscribe to the service and get ...
3
votes
2answers
113 views
How do I list active subscribers using Faye?
I'm using Faye for dispatching messages and it works well. But I want to retrieve the active connections for a given channel, and things behave a bit differently: See "list active subscribers on a ...
3
votes
1answer
52 views
Pros/cons of a global observer object vs. a mixin
When creating a complex JS application, what are the pros and cons of using a global observer object which fires events and which all other objects subscribe to vs. mixing in or prototyping pub/sub ...
3
votes
1answer
140 views
Publisher subscribe in Scala
I'm new to scala, and I'm looking into the Publisher-Subscribe usage. There might be a problem with my Google skills, but I can't seem to find an example of this usage where I can specify which events ...
3
votes
3answers
340 views
lost messages on zeromq pub sub
I'm trying to implement the pub sub design pattern using zeromq framework.
The idea is to launch a subscriber and afterwards to launch the publisher.
The subscriber will listen to 100 messages and the ...
3
votes
2answers
1k views
Real-time application newbie - Node.JS + Redis or RabbitMQ -> client/server how?
I am a newbie to real-time application development and am trying to wrap my head around the myriad options out there. I have read as many blog posts, notes and essays out there that people have been ...
3
votes
1answer
299 views
WCF Publish / Subscribe: How to handle client side timeout so as not to miss information?
I have a simple WCF publish/subscribe up and running, based on this example. I am using netTcpBinding with reliableSession enabled. Everything works fine with the functionality (the subscribed clients ...
3
votes
4answers
652 views
Publish/Subscribe samples with RabbitMQ in .NET
Ive built this sample: http://simonwdixon.wordpress.com/2011/05/08/getting-started-with-rabbitmq-in-dotnet/ , but made 2 programs: one-publisher, another- subscriber. Im using BasicPublish to publish ...
3
votes
1answer
204 views
PHP Ejabberd Handshaking
I am creating a social networking site where I want users to chat and receive live notifications like Facebook, I tried searching for possible solutions and found ejabberd's pubsub module (I am using ...
3
votes
1answer
138 views
Python based publish subscribe middleware
Is there a scalable, python based publish subscribe middleware available? I tried RabbitMQ, but it does not scale well over 32-64 nodes.
I need a middleware that could run over >1000 nodes
Thanks
3
votes
2answers
1k views
node.js and juggernaut pub/sub
I'm using express framework and juggernaut. I looked at many examples about juggernaut, all examples using this method(client side):
var jug = new Juggernaut;
jug.subscribe("channel_name", ...
3
votes
1answer
353 views
Is there a jQuery Equivalent of YUI 2 Custom Event Publish/Subscribe Event Model?
I learned how to develop in Javascript using the YUI 2 library and was wondering if there were a jQuery equivalent of Custom Events (http://developer.yahoo.com/yui/event/#customevent)
Specifically, I ...
3
votes
1answer
167 views
Biztalk client defined subscription items
I am designing a Biztalk solution which requires client applications to subscribe and receive only a certain subset of event messages depending on their user permissions. Subscription will be done ...
3
votes
1answer
446 views
What Is The Difference Between Pub/Sub And jQuery Data-Link?
A popular topic at the jQuery conference in Boston this month was the idea of Pub/Sub -
http://www.bennadel.com/blog/2037-Simple-Publication-And-Subscription-Functionality-Pub-Sub-With-jQuery.htm
A ...
3
votes
2answers
589 views
Any good pubsub.framework guides?
Are there any good guides on how to use pubsub.framework? Apple's documentation is scarce and the sample code that they give you is impossible to follow
3
votes
2answers
260 views
possible to use more then 65535 ports for Xmpp PubSub or Comet implementation?
In Comet/Reverse Ajax/PubSub underlying technology/fundamental is Long polling. So connection is kept open for a minute or so..
And as per my little knowledge about networking and OS, TCP/IP supports ...
3
votes
2answers
154 views
How relevant is the OpenAjax Alliance to the average web developer?
The OpenAjax Alliance states that it is an "organization of leading vendors, open source projects, and companies using Ajax," but I don't find any questions on stackoverflow that reference them. I am ...
2
votes
1answer
82 views
Can an ASP.NET application handle NServiceBus events?
Most if not all of the NSB examples for ASP.NET (or MVC) have the web application sending a message using Bus.Send and possibly registering for a simple callback, which is essentially how I'm using it ...
2
votes
1answer
47 views
Sending data to specific client and not to the whole channel
I am currently playing with Faye.js. Upon subscription to a channel I want that specific client to receive an object that would be irrelevant to anybody already in the channel.
How can this be ...
2
votes
2answers
99 views
ZMQ pub/sub reliable/scalable design
I'm designin a pub/sub architecture using ZMQ. I need maximum reliability and scalability and am kind of lost in the hell of possibilities provided.
At the moment, I got a set a publishers and ...
2
votes
4answers
141 views
JEE alternative to publish subscribe using JMS
I'm new to JEE and have been looking for a common way to implement a publish/subscribe type model without having to use JMS. I'm interested in creating a simple app that displays strings as they are ...
2
votes
2answers
63 views
Windows Services communicating via MSMQs - Do I need a service bus?
I have this problem where a system contains nodes (windows services) that push messages to be processed and others that pull messages and process them.
This has been designed in a way that the push ...
2
votes
2answers
132 views
How can I create an Rx observable which stops publishing events when the last observer unsubscribes?
I'll create an observable (through a variety of means) and return it to interested parties, but when they're done listening, I'd like to tear down the observable so it doesn't continue consuming ...
2
votes
3answers
252 views
Scalable Pub/Sub engine for realtime
I'm looking for a pub/sub engine, with the following requirements:
Very low latency < 0.5 sec
Scalable
Shardable (based on geo localisation)
I'd like to be able to have multiple pub/sub servers ...
2
votes
1answer
154 views
Why can't I have a single Redis client acting as PUB and Sub in the same connection?
My mental model was that of a 'chat', where I am subscribed to a certain channel and I can publish messages to this channel.
2
votes
1answer
209 views
Service Bus - Am I being dumb?
I've been looking at Mass Transit for a couple of months now, and I'm really intrigued by the possibilities. However, I don't seem to be able to get the concepts quite right. I've looked the code, and ...
2
votes
2answers
139 views
Javascript custom events with wildcards (*)
I am making a pub/sub object for custom events and I can't figure how to add support for events like "user.logged.* where it would subscribe the subscriber to the events "user.logged.in" and ...
2
votes
1answer
99 views
Using Scala's ObservableMap
I'm trying to use scala.collection.mutable.ObservableMap.
I grabbed the snippet below from scala-user and copied it to the REPL.
The email mentions ticket 2704 which has been marked as fixed but ...
2
votes
1answer
403 views
Redis PUBLISH/SUBSCRIBE limits
I'm considering Redis for a section of the architecture of a new project. It will consist of a lot of clients (node.js connections) SUBSCRIBING to particular keys with one process PUBLISHING to those ...