Skip to content
Efra Espada edited this page Mar 31, 2018 · 5 revisions

Welcome to the Rotor server-node wiki!

Here you can find all info about how to build a simple API with few lines.

Rotor philosophy states that the only needed requests are those that change data on databases. That means that the rest of requests you are imaging are replaced. How?

schema

Rotor libraries are connected to Rotor and Redis servers. The first one controls object sharing queues, devices waiting for changes and all data edition on remote database. The second gives us Pub/Sub messaging pattern for data changes replication.

When devices make changes in objects, client libraries send generated differences to Rotor server. This differences are applied in database and replicated on the rest of devices which are listening the same object.

Check paths page for more info.