Suppose you have template1 and template2, both subscribing using this.subscribe('samePublication', sameArg) inside their .onCreated() and this.autorun().
What happens when we have something like this:
<template name="template3">
{{>template1}}
{{>template2}}
</template>
Will this.subscribe('samePublication', sameArg) run once for each template, and hit my server and DB twice?
Should I put this.subscribe() inside the .onCreated() on template3?
My own understanding is 'no' and 'no', after having read this: http://docs.meteor.com/#/full/meteor_subscribe
Hoping someone more knowledgeable can comment. Thanks in advance.