-
Notifications
You must be signed in to change notification settings - Fork 15
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
Module storage #132
Module storage #132
Conversation
@@ -47,6 +50,7 @@ public class PostCacheHandler extends CacheHandler { | |||
|
|||
private static final String UUID_KEY = "uuid"; | |||
private static final String SECONDARY_CACHE_KEY = "secondaryCache"; | |||
private static final String MODULE_STORAGE_PREFIX = "module."; |
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.
so saving into the module storage is restricted here by the module
prefix, but at the same time there isn't any guarantee that the module storage saves everything with that prefix (it could be any), so what's the matter of this check? Shouldn't we save everything into the module storage with that prefix to guarantee this check makes sense?
Am I missing something?
No description provided.