1. 20 Feb, 2013 2 commits
  2. 05 Feb, 2013 1 commit
  3. 04 Feb, 2013 2 commits
  4. 20 Oct, 2012 1 commit
  5. 06 Jul, 2012 3 commits
  6. 16 May, 2012 3 commits
  7. 01 May, 2012 1 commit
  8. 30 Apr, 2012 1 commit
  9. 10 Jan, 2012 1 commit
  10. 05 Sep, 2011 2 commits
  11. 24 Aug, 2011 2 commits
  12. 18 Aug, 2011 3 commits
  13. 17 Aug, 2011 1 commit
    • Sean Bleier's avatar
      Added support for unix domain sockets and custom parsers. · 9de00c2b
      Sean Bleier authored
      Added the ability to use tcp sockets or unix domain sockets. Also added the
      ability to specify a parser to use when processing responses from the redis
      server.  To do this I had to bring back the custom connection pool, since
      you need to instantiate a custom connection pool to be able to specify a
      parser class.
      9de00c2b
  14. 09 Aug, 2011 3 commits
  15. 27 Jul, 2011 2 commits
  16. 22 Jul, 2011 7 commits
  17. 13 Jul, 2011 3 commits
  18. 08 Jul, 2011 2 commits
    • Ales Zoulek's avatar
      Removed custom connection pool · 113c1b6d
      Ales Zoulek authored
      The are two reasons:
      * django already implements CacheClass instance as singleton, we don't
      need to reimplement that
      * connection pool in redis.py is already tested, we shouldn't have to
      test it again
      * default keywargs charset='utf-8' and errors='strict' are defaults in
      redis.py, se we don't need to copy it over
      113c1b6d
    • Ales Zoulek's avatar
      Use ImproperlyConfigured exception from Django · d2a51db3
      Ales Zoulek authored
      Users should handle django.core.exceptions.ImproperlyConfigured better
      then a custom exception with the same name
      d2a51db3