Jeong, YunWon
Jeong, YunWon
Did you initialize your class? If you defined your type in #[pymodule], it is initalized when the module is initialized. Otherwise you have to call `YourType::make_class` somewhere. This is what...
our `__jit__` feature is very experimental and doesn't support many features.
Thank you!
Sorry for the late reply. I haven’t contributed to this project for quite some time. At this point, I’m happy to help fix bugs that affect existing users. However, I’m...
Those features are not looking like only applied to lru, but applicable to any backend. e.g. either dict and memcached can reuse this feature. Can this be added to `CacheUserInterface`...
As long as it work well with action, I am inclined to action. Single decorator with many parameters can be easily reusable by wrapping function or functools.partial, but multiple decorators...
Yes, similar like that. When using default_action, the default action can be overriden. If it is overriden to `get`, ``` @ring.lru(..., default_action='get') def get_data(key): ... ``` Then `get_data` always will...
I am a bit confused here... do ring_ahead and ring_guard both applicable to same function?
Thanks, then action doesn't make sense. You already have a patched version, right? Please open a PR. let's discuss more on it.
interesting idea