DaveMcBrave
DaveMcBrave

Reputation: 41

Set up one meteor server to subscribe to another meteor server?

Meteor is mostly described as a client-server architecture, with the client usually being a browser or even native (mobile) application facing the user.

Is it, in contrast, a feasible approach to set up one meteor server to subscribe to another meteor server as a client?

Use case is similar to the distributed approach of http://diasporaproject.org/, i.e. a distributed but connected server ("pods") architecture.

Upvotes: 2

Views: 101

Answers (1)

DaveMcBrave
DaveMcBrave

Reputation: 41

This seems to be a valid concept, but not yet available in the current version. From docs.meteor.com/#meteor_connect: In this release, Meteor.connect can only be called on the client. Servers can not yet connect to other servers.

Thanks Rahul for helping a stackoverflow newbie!

Upvotes: 2

Related Questions