body: 'Lorem ipsum' }); // => chamada POST em '/posts' post.save(); // => chamada GET em /posts let posts = this.get('store').findAll('post'); // => chamada GET em /posts/1 let post = this.get('store').findRecord('post', 1); Create Read
let posts = this.get('store').peekAll('post'); peekAll peekRecord // => Nenhuma requisição web é feita. Busca no Storage. let post = this.get('store').peekRecord('post', 1);