-
Notifications
You must be signed in to change notification settings - Fork 8
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
ISSUE-690: Allow users to disble server side caching #691
Conversation
} | ||
|
||
public Boolean isCacheEnabled() { | ||
return (Boolean) getValue(config, ENABLE_CACHING, Boolean.FALSE); |
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.
It should be enabled by default, to be backward compatible.
@akatona84: Addressed your review comments. |
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.
LGTM, but pls get approval from @guruchai
I had to dig around a bit to understand what exactly you are disabling. I am slightly confused with the changes.
What's the purpose of this change? Is it only avoid to db calls to fetch other instances info? |
@guruchai : Caching was not disabled in MASTER. We raised a PR to disable it in CSP-3.0.0, with this change server side cache disabling is configuration from yaml. |
lgtm.. |
Fixes #690