Is the table shared between (cluster) forks?
Hi,
I was about to create a similar middleware using Redis (or maybe Redis is an overkill), as I need all my node.js instances to "know" about the table entries.
I was simply wondering: is there any (default) way to share the table entries between all my cluster forks?
Cheers, Vincent
@VinceOPS sure. Without having to resort to a centralized db layer (which defeats the simplicity and transient qualities of the module), we can have each instance needs to RPC report to a single place instead of each instance running independently. Additionally each time the middleware reads we can also make an RPC call. For now, you should feel safe to use it without the centralized cluster reporting, but I'll add in as lightweight as possible stream only centralized read/write mechanism within a week or two.