We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In practice, there is most of timing / quantities values that are has type of long. So, at the moment there is permanent cast from long to int type.
long
int
I want suggest to add long version of "MetricsService#createEvent" method, or replace int version.
There is no any downgrade of performance is expected, cos JVM JIT is smart enough to keep int where possible, even over smart type casts.
So that we would support wide range of values just for free.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In practice, there is most of timing / quantities values that are has type of
long
. So, at the moment there is permanent cast fromlong
toint
type.I want suggest to add
long
version of "MetricsService#createEvent" method, or replaceint
version.There is no any downgrade of performance is expected, cos JVM JIT is smart enough to keep
int
where possible, even over smart type casts.So that we would support wide range of values just for free.
The text was updated successfully, but these errors were encountered: