-
Notifications
You must be signed in to change notification settings - Fork 154
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
set_cache default does not work with plugins #792
Comments
I'm planning to remove the whole config thing in v1 (see the open issues in the milestone for current progress). So, unless you want to provide a quick fix for the 0.12 branch, this is unlikely to get looked at. |
adding to this just so other people might find it if they encounter similar issues using the decorators,
and calling with
It also seems that i cant define a host when using the decorator directly, while i cant use noself when using the alias. One potential workaround for this issue, if one wants to globally define or dynamically change the configuration of decorators is defining a wrapper around the cached decorator with the specified arguments. Using this method one can also use a combination of alias and kwargs (though if you are already defining a new decorator inline, i dont see why the alias should be used at all anymore). This can be helpful for now if one wants to change the default parameters of the decorator depending on if a service is available (ie.: check if redis is reachable and depending on that use either mem/ simple cache or redis)
|
Using
set_config
with a plugin does not work. You must call it with an alias in order to get it to work.See below:
Exception has occurred: AttributeError
'SimpleMemoryCache' object has no attribute 'hit_miss_ratio'
The text was updated successfully, but these errors were encountered: