-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Own up to user error.
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,9 @@ The reactive contexts are hard to wrap your head around, and the syntax is weird | |
|
||
When I have a template with no data binding, it keeps re-rendering the template anyway, just because another template bound to a collection is re-rendering. | ||
|
||
Performance is bad when re-rendering a list — Meteor.js is supposed to use a client-side cache of the Collection to render the list, but it's obviously making a round-trip to the server when I add a record to the tasks collection. | ||
~~Performance is bad when re-rendering a list — Meteor.js is supposed to use a client-side cache of the Collection to render the list, but it's obviously making a round-trip to the server when I add a record to the tasks collection.~~ | ||
|
||
Update: Commit [72629df](https://github.com/coopy/meteor-whid/commit/72629df) fixes this - I was waiting for the server to create a document before I inserted it into the collection. | ||
|
||
## Contact | ||
|
||
|
@@ -46,4 +48,4 @@ You can find me at [sproutlab.com][sproutlab], or email me at [[email protected] | |
[meteor-accounts]: http://docs.meteor.com/#accounts_api | ||
[sproutlab]: http://sproutlab.com/per | ||
[per-email]: mailto:[email protected] | ||
[localhost]: http://localhost:3000 | ||
[localhost]: http://localhost:3000 |