mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
7 lines
160 B
Python
7 lines
160 B
Python
![]() |
from django.conf import settings
|
||
|
import redis
|
||
|
|
||
|
from apps.social.models import *
|
||
|
|
||
|
r = redis.Redis(connection_pool=settings.REDIS_FEED_POOL)
|
||
|
print "Redis: %s" % r
|