Skip to content
This repository was archived by the owner on Jan 9, 2024. It is now read-only.

Commit 3842199

Browse files
committed
Merge branch 'unstable'
2 parents 187838a + 01e2c46 commit 3842199

File tree

6 files changed

+18
-12
lines changed

6 files changed

+18
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gitter chat room: [![Gitter](https://badges.gitter.im/Grokzen/redis-py-cluster.s
1212

1313
# Documentation
1414

15-
All documentation can be found at http://redis-py-cluster.readthedocs.org/en/master
15+
All documentation can be found at https://redis-py-cluster.readthedocs.io/en/master
1616

1717
This Readme contains a reduced version of the full documentation.
1818

docs/benchmarks.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Benchmarks
22
==========
33

4-
There is a few benchmarks that is designed to test specific parts of the code that will show how big of a performance difference there is between using this lib and the normal Redis client.
4+
These are a few benchmarks that are designed to test specific parts of the code to demonstrate the performance difference between using this lib and the normal Redis client.
55

66

77

@@ -16,21 +16,21 @@ Install with
1616
1717
pip install -e .
1818
19-
You also need a few redis servers to test against. It is required to have 1 cluster with atleast one node on port `7001` and it also required to have a non-clustered server on port `7007`.
19+
You also need a few redis servers to test against. You must have one cluster with at least one node on port `7001` and you must also have a non-clustered server on port `7007`.
2020

2121

2222

23-
Implemented Bencmarks
23+
Implemented benchmarks
2424
---------------------
2525

26-
- `simple.py`, This benchmark can be used to messure a simple `set` and `get` operation chain. It also support running pipelines bu adding the flag `--pipeline`
26+
- `simple.py`, This benchmark can be used to measure a simple `set` and `get` operation chain. It also supports running pipelines by adding the flag `--pipeline`.
2727

2828

2929

3030
Run predefined benchmarks
3131
-------------------------
3232

33-
There is a set of predefined benchmarks that can be runned to messure performance drop from using this library.
33+
These are a set of predefined benchmarks that can be run to measure the performance drop from using this library.
3434

3535
To run the benchmarks run
3636

docs/release-notes.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
Release Notes
22
=============
33

4+
1.3.6 (Nov 16, 2018)
5+
--------------------
6+
7+
* Pin upstream redis-py package to release 2.10.6 to avoid issues with incompatible version 3.0.0
8+
9+
410
1.3.5 (July 22, 2018)
5-
--------------
11+
---------------------
612

713
* Add Redis 4 compatability fix to CLUSTER NODES command (See issue #217)
814
* Fixed bug with command "CLUSTER GETKEYSINSLOT" that was throwing exceptions

rediscluster/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
setattr(redis, "StrictClusterPipeline", StrictClusterPipeline)
1717

1818
# Major, Minor, Fix version
19-
__version__ = (1, 3, 5)
19+
__version__ = (1, 3, 6)
2020

2121
if sys.version_info[0:3] == (3, 4, 0):
2222
raise RuntimeError("CRITICAL: rediscluster do not work with python 3.4.0. Please use 3.4.1 or higher.")

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
redis>=2.10.6
1+
redis==2.10.6

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
setup(
2222
name="redis-py-cluster",
23-
version="1.3.5",
24-
description="Cluster library for redis 3.0.0 built on top of redis-py lib",
23+
version="1.3.6",
24+
description="Library for communicating with Redis Clusters. Built on top of redis-py lib",
2525
long_description=readme + '\n\n' + history,
2626
author="Johan Andersson",
2727
author_email="[email protected]",
@@ -31,7 +31,7 @@
3131
url='http://github.com/grokzen/redis-py-cluster',
3232
license='MIT',
3333
install_requires=[
34-
'redis>=2.10.6'
34+
'redis==2.10.6'
3535
],
3636
keywords=[
3737
'redis',

0 commit comments

Comments
 (0)