When using the real data from a hosted Compose instance, I get very slow subscriptions. Both Locally and in Production. With dummy data in local dev, the app is very fast.
All of my subscriptions are iron-router subscriptions, so nothing get’s called on startup.
For example: with exception of the built-in User collection, no subscription is called on the homepage. Navigating to the homepage, I’m waiting 2 minutes, before Meteor.userId() will return anything. This is bad since I use alanning:roles to determine what page to show the user next.
Possibly related, some function is blocking client calls to server methods. But I can’t identify anything on Kadira nor the Chrome profiler.
What other tools can I use to discover if something is blocking subscriptions?