ms-seo
ms-seo copied to clipboard
seoByRouteName is bogging down my app
I am not using the seoByRouteName for any actual data, is there a way we can make it optional?
I am talking about this line of code: https://github.com/DerMambo/ms-seo/blob/66717dd1f8d08c8cb6faadf7545ae123c6e440e8/seo.coffee#L167.
/cc @sachag
This is having a large impact on crater.io performance
+1
+1
I actually get the following error consistently:
Exception from sub seoByRouteName id wcAbrwLvTPY6qMMM9 ReferenceError: check is not defined
Not sure if this is because I'm not using seoByRouteName or something else.
Got the same problem (check undefined) which is kind of blur as check is supposed to be part of Meteor.JS documentation...
+1
+1
+1
+1
+1
+1
+1
Try this on your meteor app folks:
meteor add check
meteor add ejson
That worked for me.
+1 Removed this because it was far too inefficient. App CPU was jumping around all the time and hitting 100% sometimes especially under heavy traffic. After I removed this app CPU dropped to a steady 5-10% and hitting a max of 20% consistently. It did also have the highest throughput on my app due to it loading every page with an average of 3,500 page views per day.
+1