We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm upgrading an app to Ember 1.3.2 and Ember Data 1.3.4. To acknowledge deprecations I added:
shouldReloadAll: function() { return false; }, shouldBackgroundReloadRecord: function() { return true; },
And I'm seeing strange behavior with regards to locally cached models.
The following scenario causes the same records to be fetched from the api many times even though all channels were preloaded by a parent model:
model: function() { return this.store.peekAll('message'); }, {{#each model as |message| }} {{message.channel.name}} {{/each}}
To display a list of messages /api/channels/1 is called ~20 times within the same runloop.
The text was updated successfully, but these errors were encountered:
Thanks for reporting!
I think this should be fixed by #3468
Sorry, something went wrong.
@jerel can you confirm this was fixed by #3468 ?
Closing this should have been fixed by #3468.
No branches or pull requests
I'm upgrading an app to Ember 1.3.2 and Ember Data 1.3.4. To acknowledge deprecations I added:
And I'm seeing strange behavior with regards to locally cached models.
The following scenario causes the same records to be fetched from the api many times even though all channels were preloaded by a parent model:
To display a list of messages /api/channels/1 is called ~20 times within the same runloop.
The text was updated successfully, but these errors were encountered: