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
Hello,
In rain.workload.olio.OlioOperation class, method refreshCache says
Refreshes the cache by resetting it 40% of the time
However, looking at the code:
boolean resetCache = ( this._random.random( 0, 9 ) < 6 );
It really resets the cache 60% of times.
Should "< 6" be replaced by "< 4"?
Cheers,
-- Marco
The text was updated successfully, but these errors were encountered:
Initial commit of RUBiS workload rewriting (see #8).
db57cf0
No branches or pull requests
Hello,
In rain.workload.olio.OlioOperation class, method refreshCache says
However, looking at the code:
It really resets the cache 60% of times.
Should "< 6" be replaced by "< 4"?
Cheers,
-- Marco
The text was updated successfully, but these errors were encountered: