How to manage a search application with ember

Hi all,

I want to build a search application with ember where we have 2 types of rest apis. One is to fetch the search results. The other one is to fetch additional info for a certain item.

The application is absolutely read only. Would it be a good idea to use ember data for this task?

On one hand i like the idea about the store because it saves me ajax calls when i have the result cached.

On the other hand, i see that it was designed for a CRUD application and i have just R so will it impose any problem?

Additionally, is there a hook in the RestAdapter where i can query and get a list of objects and not just find a record by an id?

Thanks, David