summaryrefslogtreecommitdiff
path: root/benchmarks/basic_operations.py
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/basic_operations.py')
-rw-r--r--benchmarks/basic_operations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/basic_operations.py b/benchmarks/basic_operations.py
index 34dcd97..a4b675d 100644
--- a/benchmarks/basic_operations.py
+++ b/benchmarks/basic_operations.py
@@ -31,7 +31,7 @@ def parse_args():
def run():
args = parse_args()
- r = redis.StrictRedis()
+ r = redis.Redis()
r.flushall()
set_str(conn=r, num=args.n, pipeline_size=args.P, data_size=args.s)
set_int(conn=r, num=args.n, pipeline_size=args.P, data_size=args.s)