We don't use Ember-Data in our project. We got a scenario where each model has an id of another type model. In fact we don't have models as well. We are using plain Ajax.
Let's take 2 models Test and Application. A test will contain the application id to which that test is created for. When I retrieve a Test, I also want the application data. Ember-Data does this by default when we use relationships. How can I achieve this without Ember-Data. There might 2 tests for same application. Once the application data is retrieved, I don't want to make a request again for the same application data.