'Is it possible to go through mongodb results ordered by constantly changing field with pagination?
I have a collection with following schema
{
content: string,
score: Decimal
}
The goal is to go through whole collection with pagination ordered by score, but score can change every minute. So it is possible that score on the first page can became equal or less then score on the second page and will return same object (from the first page) as a result on the second page. Is it possible to iterate over whole collection without doubles?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
