jrief / django-angular

Let AngularJS play well with Django
http://django-angular.awesto.com/
MIT License
1.23k stars 294 forks source link

data binding with redis-py database? #181

Closed 29k closed 9 years ago

29k commented 9 years ago

Hello, I have a project use redis-py as cache database. coding example:

!/usr/bin/python2.7

import redis
redisconfig = {'host': 'localhost', 'port': 6379,'db': 0,}
r = redis.StrictRedis(**redisconfig)

Is there a solution to databinding with the r ? As I'm new to angular, I see how databinding with models. But binding to redis no find. Any body could help me ? Or will django-angular do add some feature with redis in future? Thanks in advance.

jrief commented 9 years ago

Currently that's out of scope for this project. Please do not ask such generic questions, this forum is intended for reporting bugs and asking concrete questions about the documentation.