-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathclient.py
36 lines (26 loc) · 888 Bytes
/
client.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import time
import anyio
import purerpc
from generated.greeter_pb2 import HelloRequest
from generated.greeter_grpc import GreeterStub
async def worker(channel):
stub = GreeterStub(channel)
for i in range(100):
data = "World" * 1
response = await stub.SayHello(HelloRequest(name=data))
assert(response.message == "Hello, " + data)
async def main_coro():
async with purerpc.insecure_channel("localhost", 50055) as channel:
for _ in range(100):
start = time.time()
async with anyio.create_task_group() as task_group:
for _ in range(100):
task_group.start_soon(worker, channel)
print("RPS: {}".format(10000 / (time.time() - start)))
def main():
purerpc.run(main_coro)
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
pass