Live data from Hacker News

Meteor 0.4.0: Introducing Spark

meteor.com

21–24 of 24 posts

Re: Meteor 0.4.0: Introducing Spark

#21
post #16

I agree that the name should be changed. If someone said they built their product "using Spark", it would be fairly ambiguous as to which one they meant, especially if their product has a data mining component. [ http://www.spark-project.org/ ] Meteor Spark looks pretty nice though; look forward to trying it out.

That's what I thought they were talking about, too.

Re: Meteor 0.4.0: Introducing Spark

#24
post #6

Earlier quoted context omitted.

For the real-time data synchronization part, try dropping dotCloud JS into your Django app: http://js.dotcloud.com It doesn't do live templating, though.

But, how much would I need to write to update the data in realtime as it changes in the backend?

Something like this:

    var people = dotcloud.sync.synchronize('people');
    people.observe(function(type, change) {
        // Update template here
    });
There's a live demo here: http://jsfiddle.net/q2q8b/31/
Post reply on HN