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
Currently, the scoutapm_microtime() we use is the same as PHP's microtime(true) implementation that uses gettimeofday underneath.
PHP 7.3 introduced hrtime(true) which allows fetching a high resolution monotonic timestamp. This may be more suitable for performance monitoring purposes, so perhaps we should consider using this instead?
The text was updated successfully, but these errors were encountered:
Currently, the
scoutapm_microtime()
we use is the same as PHP'smicrotime(true)
implementation that usesgettimeofday
underneath.PHP 7.3 introduced
hrtime(true)
which allows fetching a high resolution monotonic timestamp. This may be more suitable for performance monitoring purposes, so perhaps we should consider using this instead?The text was updated successfully, but these errors were encountered: