1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
AUTHORS.rst
LICENSE
MANIFEST.in
README.rst
pyproject.toml
setup.cfg
setup.py
django_redis/__init__.py
django_redis/cache.py
django_redis/exceptions.py
django_redis/hash_ring.py
django_redis/pool.py
django_redis/util.py
django_redis.egg-info/PKG-INFO
django_redis.egg-info/SOURCES.txt
django_redis.egg-info/dependency_links.txt
django_redis.egg-info/requires.txt
django_redis.egg-info/top_level.txt
django_redis/client/__init__.py
django_redis/client/default.py
django_redis/client/herd.py
django_redis/client/sentinel.py
django_redis/client/sharded.py
django_redis/compressors/__init__.py
django_redis/compressors/base.py
django_redis/compressors/identity.py
django_redis/compressors/lz4.py
django_redis/compressors/lzma.py
django_redis/compressors/zlib.py
django_redis/compressors/zstd.py
django_redis/serializers/__init__.py
django_redis/serializers/base.py
django_redis/serializers/json.py
django_redis/serializers/msgpack.py
django_redis/serializers/pickle.py
tests/__init__.py
tests/conftest.py
tests/test_backend.py
tests/test_cache_options.py
tests/test_client.py
tests/test_connection_factory.py
tests/test_connection_string.py
tests/test_hashring.py
tests/test_serializers.py
tests/test_session.py
tests/settings/sqlite.py
tests/settings/sqlite_herd.py
tests/settings/sqlite_json.py
tests/settings/sqlite_lz4.py
tests/settings/sqlite_msgpack.py
tests/settings/sqlite_sentinel.py
tests/settings/sqlite_sentinel_opts.py
tests/settings/sqlite_sharding.py
tests/settings/sqlite_usock.py
tests/settings/sqlite_zlib.py
tests/settings/sqlite_zstd.py
|