I'm using ArangoDB for a Web Application through Strongloop. I've got some performance problem when I run this query:
FOR result IN Collection SORT result.field ASC RETURN result
I added some index to speed up the query like skiplist
index on the field sorted.
My Collection has inside more than 1M of records.
The application is hosted on n1-highmem-2 on Google Cloud. Below some specs:
- 2 CPUs - Xeon E5 2.3Ghz
- 13 GB of RAM
- 10GB SSD
Unluckly, my query spend a lot of time to ending. What can I do?
Best regards, Carmelo