1

I want to store some feed in redis server, except using global variable for redis server object any other suggestion to do this?

SearchDream
  • 101
  • 7
  • possible duplicate of [How can I use redis with Django?](http://stackoverflow.com/questions/3801379/how-can-i-use-redis-with-django) – miku Dec 13 '11 at 08:34
  • I have checked this one, I need to know how to maintain the connection with redis server in Django. currently I define a redis client in a module (redis_client.py), but the connection not stable. – SearchDream Dec 20 '11 at 09:32

1 Answers1

0

You could use redis as Cache and then use django's low level api to set and get data.

arie
  • 18,737
  • 5
  • 70
  • 76