I am implementing an express session with rethinkdb and I have an 'expires' field that is calculated as so: r.now() + 24 * 60 * 60 * 1000 (1 day from now).
Can I do something like this?
r.now().add(millisecondsToAdd)
There is no api documentations for this. It will also be useful for querying.
Note: I am using the official Javascript driver.