You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
387 B
Python
21 lines
387 B
Python
"""
|
|
Measure latency of .local() setup.
|
|
"""
|
|
|
|
import mitogen
|
|
import time
|
|
|
|
|
|
@mitogen.main()
|
|
def main(router):
|
|
for x in range(1000):
|
|
t = time.time()
|
|
f = router.local()# debug=True)
|
|
tt = time.time()
|
|
print(x, 1000 * (tt - t))
|
|
|
|
print(f)
|
|
print('EEK', f.call(socket.gethostname))
|
|
print('MY PID', os.getpid())
|
|
print('EEKERY', f.call(os.getpid))
|