|
Project Information
Links
|
This is the code that powers feedgraph.com, a service which provides real-time feeds to clients. The service is particularly useful to JavaScript clients which need to: - communicate in real-time with servers or other clients
- store free-form objects in the cloud
- subscribe to changes to objects in the cloud
The service provides a graph database comprising: - nodes
- edges between nodes
- real-time feeds associated with edges (see EdgeFeed)
- real-time feeds associated with nodes (see ContentFeed)
An example application: - create a node for each user in a chat app, e.g. /chat/bob, /chat/alice
- when users send each other messages:
- create a node for the message, e.g. {'from':'alice','msg':'hello bob!'}
- link the user-node to the message-node with RelationType "inbox"
- clients subscribe to their "inbox" EdgeFeed, e.g. /chat/bob/inbox
Get StartedLearn the API and see some ExampleApps.
|