Results 99 comments of Ben Green

If you want me to take a look, give a link to a repository with the minimal code to reproduce the issue that I can clone.

Your database dump doesn't contain the `delivery_executive` table used in the query. Maybe include a new dump with only a few rows in each table? Also, I didn't try to...

You do not want to use the `$scope.$meteorSubscribe` method because that only works with the Mongo `Meteor.subscribe` subscriptions. Instead, force `$scope` to update when the subscription updates. ``` javascript angular.module('console').controller('TodosListCtrl',...

Hmm this is an interesting case. There is no built-in way to deal with this but your suggestion of returning an empty collection points me to this solution: ``` javascript...

Why would you use different connections for different databases? It is not required to specify a database in the connection settings.

Does this still occur with the latest version? (0.1.14)

Pause/resume updates should be no problem to implement. Give a few days and I'll see what I can come up with.

Without testing it conclusively, I would think that most of the delay is caused by the processing in Javascript, especially if those inserts/updates are occurring on tables that have live...

@andycjw That feature already exists. See the [`minInterval` configuration setting](https://github.com/numtel/mysql-live-select#livemysql-constructor).