Using Meteor, how to handle computationally intensive tasks? -
this question has answer here:
- long computations on meteor 2 answers
since meteor single threaded avoid pretty intensive function bogging down application. but, how go this? need function able access database , take parameter or 2 (an array). how this?
you can use this.unblock()
detailed here, or can create meteor app observes mongodb relevant changes , computations there.
Comments
Post a Comment