zmq async client server
2020.03.12 22:39
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
1639 | image encryption [1] | WHRIA | 2020.04.24 | 115 |
1638 | zerohq encryption [5] | WHRIA | 2020.04.23 | 85 |
1637 | 의료영상분석장치 분류 코드 | WHRIA | 2020.04.23 | 81 |
1636 | 회귀분석 종류 | WHRIA | 2020.04.14 | 69 |
1635 | fcitx | WHRIA | 2020.04.05 | 130 |
1634 | chatbot | WHRIA | 2020.04.03 | 82 |
1633 | kernel load | WHRIA | 2020.04.03 | 63 |
1632 | plum | WHRIA | 2020.04.03 | 138 |
» | zmq async client server [1] | WHRIA | 2020.03.12 | 92 |
1630 | CIDR 표기법 [1] | WHRIA | 2020.03.12 | 95 |
1629 | multiple NIC ubuntu [6] | WHRIA | 2020.03.10 | 80 |
1628 | calendar javascript dropdown | WHRIA | 2020.03.01 | 68 |
1627 | sql replication 성공 [1] | WHRIA | 2020.02.20 | 76 |
1626 | sql 중복제거 | WHRIA | 2020.02.10 | 87 |
1625 | airplane | WHRIA | 2020.02.10 | 216 |
REP 서버
import sys import asyncio import zmq import zmq.asyncio import random ctx = zmq.asyncio.Context() async def run_server(*ports): sock = ctx.socket(zmq.REP) for port in ports: sock.bind(f'tcp://*:{port}') while True: request = await sock.recv_string() print(f'RECEIVED:\t{request}') print(f'PROCESSING...') await asyncio.sleep(random.randrange(5,30) / 10) print(f'SENDING:\t{request}') await sock.send_string(request) if __name__ == '__main__': ports = sys.argv[1:] if len(sys.argv) > 1 else (5556,) asyncio.run(run_server(*ports))
REQ 클라이언트
import sys import asyncio import zmq import zmq.asyncio ctx = zmq.asyncio.Context() async def run_client(*ports): sock = ctx.socket(zmq.REQ) for port in ports: sock.connect(f'tcp://localhost:{port}') while True: line = input('>>') print(f'SENDING:\t{line}') await sock.send_string(line) reply = await sock.recv_string() print(f'RECEIVED:\t{reply}') if line == 'bye': break if __name__ == '__main__': ports = sys.argv[1:] if len(sys.argv) > 1 else (5556,) asyncio.run(run_client(*ports))