Did you try passing cache.redis to current like db :
# Model
from gluon.contrib.redis_utils import RConn
from gluon.contrib.redis_cache import RedisCache
rconn = RConn(host='localhost', port=6379, db=None, password='',
socket_timeout=None,
socket_connect_timeout=None)
cache.redis = RedisCache(redis_conn=rconn, debug=True, with_lock=False)
import current
current.cache = cache
# In module
from gluon import current
Then use
current.cache.redis() where you need it...
Richard
On Wed, Mar 29, 2017 at 9:40 AM, Richard Vézina <[email protected]
> wrote:
> Had the same issue, not had time to work on it. Will post here any
> progress...
>
> Maybe Simone can help us, I recall he wrote the redis contrib.
>
> Richard
>
> On Mon, Mar 27, 2017 at 4:09 PM, Pierre <[email protected]> wrote:
>
>> Hi everyone,
>>
>> I have a *cache.redis* defined in a db.py file like so:
>>
>> from gluon.contrib.redis_utils import RConn
>> from gluon.contrib.redis_cache import RedisCache
>>
>> rconn = RConn('localhost', 6379)
>> cache.redis = RedisCache(redis_conn=rconn, debug=True)
>>
>> now i'd like to perform caching in a module how ?
>>
>> I tried to pass cache.redis to module function and also the current
>> method : current.cache_redis=cache.redis.....None of these
>> works..............how to access *cache.redis* from the module ?
>>
>> --
>> Resources:
>> - http://web2py.com
>> - http://web2py.com/book (Documentation)
>> - http://github.com/web2py/web2py (Source code)
>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "web2py-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected].
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.