I want to query a document from a MongoDB database where the condition is the outcome of a given calculation. I don't know if this is understandable, an analog SQL query might help:
SELECT * FROM tasks AS t WHERE t.lastRun < (NOW() - t.maxAge)
Each tasks has a maxAge field which determines how often a task should run. If the maxAge is reached, the query should return that task which is then executed.
Because I lack the vocabulary to describe such a query it's hard to find anything about this topic. Please be forgiving if this is mentioned somewhere. :-)
My first reflex was: Let's map the whole collection to contain the calculated threshold for each task, but this seems a bit too much for such a simple query. I hope this isn' t the only solution to this. :-)