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.
16 lines
299 B
Python
16 lines
299 B
Python
7 years ago
|
"""
|
||
|
Measure latency of .fork() setup/teardown.
|
||
|
"""
|
||
|
|
||
|
import mitogen
|
||
|
import time
|
||
|
|
||
|
@mitogen.main()
|
||
|
def main(router):
|
||
|
t0 = time.time()
|
||
|
for x in xrange(200):
|
||
|
t = time.time()
|
||
|
ctx = router.fork()
|
||
|
ctx.shutdown(wait=True)
|
||
|
print '++', 1000 * ((time.time() - t0) / (1.0+x))
|