Ajay M
Ajay M
I think it would increase complication when trying to differentiate between actual value tuple and tuple with ttl. I'm thinking of something like: `root.x.y.z('value', ttl=20)`
Maybe we can pass the namespace in Root's constructor to set keys dynamically like the following: ``` >>> from redisworks import Root >>> root = Root(namespace="post") >>> root.item1 = "something"...
This is happening cause in `get_obj` method, `value = actual_type(value)` is called i.e., which evaluates to `value = bool("False")` which is always going to be true.
Maybe we can use some sort of common key value pair if empty dict is passed and remove the key value pair when sending it back to the user?
@curlup Yep, it's happening with me on traefik Edit: After spending 2-3 days on making oauth2 work with traefik I shifted to nginx ingress and it solved my issues.
Thanks!! 😁 I really like the concept of this library.
I just noticed this change. Thanks @seperman I will take a look at it.