Q&A
Ask and answer questions to make information more available to wider audiences.
Asa Bullok @bullokasa   17, May 2023 12:00 AM
core concept
What is the core concept of Ember.js?
answers 2
 
Answer 1
James Bomengen @jamesbomengen   21, May 2023 06:12 PM
* Serializer: It is used to translate JSON data into a record object.
* Automatic Caching: It is used for caching.
 
Answer 2
Aiden Barti @aidenbarti   21, May 2023 05:49 PM
* Store: This is a central repository and cache of all records available in an application. Controller and admin can access it.
* Models: It specifies a class which defines the data of properties and behavior.
* Records: It specifies an instance of a model which contains loaded information from a server.
* Adapter: It is responsible for translating requested records into the appropriate calls.