Prevent unnecessary server calls

Hi there, I am loading data with a DS.RESTAdapter inside a route (within its model hook). The request takes a certain time. If I re-visit the route later on, I get the already loaded data rendered instantly, but I can see that the DS.RESTAdapter fetches the data again. How do I prevent this unnecessary network call (as I already have the data)?

Regards, Martin

You can tweak the cacheing behavior. Ember Data v1.13 Released

Thanks, varblob! This was super-helpful! Regards, Martin