From 7a5db6041f4f11ed502fa7446da900509dedb00f Mon Sep 17 00:00:00 2001 From: malosek Date: Wed, 16 Sep 2009 12:22:36 +0200 Subject: added newly added socket options to all language bindings, P2P model changed to PUB/SUB for throughput tests --- perf/python/local_thr.py | 8 +++++++- perf/python/remote_thr.py | 6 +++++- 2 files changed, 12 insertions(+), 2 deletions(-) (limited to 'perf/python') diff --git a/perf/python/local_thr.py b/perf/python/local_thr.py index 0d142cf..26896d0 100644 --- a/perf/python/local_thr.py +++ b/perf/python/local_thr.py @@ -35,7 +35,13 @@ def main (): sys.exit (1) ctx = libpyzmq.Context (1, 1); - s = libpyzmq.Socket (ctx, libpyzmq.P2P) + s = libpyzmq.Socket (ctx, libpyzmq.SUB) + + s.setsockopt (libpyzmq.SUBSCRIBE , "*"); + + # Add your socket options here. + # For example ZMQ_RATE, ZMQ_RECOVERY_IVL and ZMQ_MCAST_LOOP for PGM. + s.bind (bind_to) msg = s.recv () diff --git a/perf/python/remote_thr.py b/perf/python/remote_thr.py index bab001d..f7c69cf 100644 --- a/perf/python/remote_thr.py +++ b/perf/python/remote_thr.py @@ -35,7 +35,11 @@ def main (): sys.exit (1) ctx = libpyzmq.Context (1, 1); - s = libpyzmq.Socket (ctx, libpyzmq.P2P) + s = libpyzmq.Socket (ctx, libpyzmq.PUB) + + # Add your socket options here. + # For example ZMQ_RATE, ZMQ_RECOVERY_IVL and ZMQ_MCAST_LOOP for PGM. + s.connect (connect_to) msg = ''.join ([' ' for n in range (0, message_size)]) -- cgit v1.2.3