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
Found it ... it was changing from -1 to Long.MAX_VALUE and one of the fast-path conditionals was missed (it was checking for > 0 rather than == -1 so was missed.
PR #1443 changing
request(int n)
torequest(long n)
appears to have caused a non-trivial performance hit in the JMH tests.Before:
After:
The text was updated successfully, but these errors were encountered: