You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MongoDB v3.2 has a sorting limit for 32MB (as documented here). This does become an issue with sorting on 'updated'. There is a fix for this issue for the other sorting options (name, rating, trending, year), this involves 'aggregation'.
Sadly I have not found a way to apply this fix to the 'updated' sorting option as it sorts on a key-value pair which is inside of an array as you can see here. I did try to overcome this by using the 'unwind' and 'group' opperators, but without success.
The text was updated successfully, but these errors were encountered:
MongoDB v3.2 has a sorting limit for 32MB (as documented here). This does become an issue with sorting on 'updated'. There is a fix for this issue for the other sorting options (name, rating, trending, year), this involves 'aggregation'.
Sadly I have not found a way to apply this fix to the 'updated' sorting option as it sorts on a key-value pair which is inside of an array as you can see here. I did try to overcome this by using the 'unwind' and 'group' opperators, but without success.
The text was updated successfully, but these errors were encountered: