Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
D
Django-Redis-Cache
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shared
Django-Redis-Cache
Commits
6d05d15c
Commit
6d05d15c
authored
Jul 16, 2015
by
Sean Bleier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updates required version of redis-py
parent
8b074765
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
README.rst
README.rst
+6
-4
requirements.txt
requirements.txt
+1
-1
setup.py
setup.py
+1
-1
No files found.
README.rst
View file @
6d05d15c
...
@@ -25,11 +25,13 @@ Changelog
...
@@ -25,11 +25,13 @@ Changelog
* Deprecate support for Python 2.6. The cache should still work, but tests
* Deprecate support for Python 2.6. The cache should still work, but tests
will fail and compatibility will not be guaranteed going forward.
will fail and compatibility will not be guaranteed going forward.
Backward incompatibilities:
**Backward incompatibilities:**
The ``HashRing`` behavior has changed to maintain a proper keyspace balance.
*
The ``HashRing`` behavior has changed to maintain a proper keyspace balance.
This will lead to some cache misses, so be aware.
This will lead to some cache misses, so be aware.
* Now requires `redis-py`_ >= 2.10.3
1.0.0
1.0.0
-----
-----
...
@@ -92,10 +94,10 @@ control and the option to roll your own parser class if you are so bold.
...
@@ -92,10 +94,10 @@ control and the option to roll your own parser class if you are so bold.
Requirements
Requirements
============
============
`redis-py`_ >= 2.
4.5
`redis-py`_ >= 2.
10.3
`redis`_ >= 2.4
`redis`_ >= 2.4
`hiredis`_
`hiredis`_
`python`_ >= 2.
5
`python`_ >= 2.
7
1. Run ``pip install django-redis-cache``.
1. Run ``pip install django-redis-cache``.
...
...
requirements.txt
View file @
6d05d15c
redis
>=2.
4.5
redis
>=2.
10.3
setup.py
View file @
6d05d15c
...
@@ -8,7 +8,7 @@ setup(
...
@@ -8,7 +8,7 @@ setup(
version
=
"1.2.0"
,
version
=
"1.2.0"
,
packages
=
[
"redis_cache"
,
"redis_cache.backends"
],
packages
=
[
"redis_cache"
,
"redis_cache.backends"
],
description
=
"Redis Cache Backend for Django"
,
description
=
"Redis Cache Backend for Django"
,
install_requires
=
[
'redis>=2.
4.5
'
],
install_requires
=
[
'redis>=2.
10.3
'
],
classifiers
=
[
classifiers
=
[
"Programming Language :: Python"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 2.6"
,
"Programming Language :: Python :: 2.6"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment