I'm receiving the 100MB memory limit error for sorting against a mongodb collection with indexes.
I found a partial solution to this issue here however it does not contain information about indexed collections.
In this mongoDB documentation it states that $sort can only use allowDiskUse
if "the sort operation is not supported by an index".
My question is, should I be receiving the 100MB limit error if I'm using indexing? Or is it that even with my indexing I'm still reaching the 100MB limit error?