The default behavior for usergrid collection seems to be the entities that were added first are retrieved first when doing a GET. Can I have the entities retrieved in the reverse order, i.e. the entities added last are retrieved first. I know I can do it using a query ql=select * order by created desc but will this always mean sorting the results (having performance implications) ?
For e.g If I have a usergrid collection of Blogs then I need to get the latest blog first without having to do order by.
How do we achieve this ?