-
Notifications
You must be signed in to change notification settings - Fork 541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lib: add nowAbsolute
to fast timers
#3749
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can't use the no stall timer.
Add another variable called fastNowAbsolute which is updated to date.now in every refresh |
@@ -0,0 +1,13 @@ | |||
import { bench, group, run } from 'mitata' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kind of trivial benchmark.
152c924
to
eb65121
Compare
CI is very red |
Still very red |
Signed-off-by: flakey5 <[email protected]>
b9d2d1a
to
a8238fd
Compare
This adds a
nowAbsolute
function to the fast timers lib that allows for fetching the approximate absolute timestamp. This is useful in places like the cache interceptor and cache stores, where we're currently callingDate.now()
.cc @mcollina