Python 다 중 스 레 드 처리 인 스 턴 스 상세 설명[단일 프로 세 스/다 중 프로 세 스]
python―다 중 스 레 드 처리
1.프로 세 스 가 실 행 된 후에 다음 프로 세 스 를 계속 합 니 다.
root@72132server:~# cd /root/python/multiprocess/
root@72132server:~/python/multiprocess# ls
multprocess.py
root@72132server:~/python/multiprocess# cat multprocess.py
#!/usr/bin/python
# --*-- coding:utf-8 --*--
from multiprocessing import Process,Lock# ,
import time,os
def sayhi(i):
print 'hello world!!!', i
time.sleep(10)
#lock = Lock()
for n in range(100):# n=100
p = Process(target=sayhi,args=(n,))# def, def , args , args() 。
p.start()
p.join()# 。
root@72132server:~/python/multiprocess#
실행 상황:1)프로 세 스 보기
root@72132server:~# cd /root/python/multiprocess/
root@72132server:~/python/multiprocess# ls
multprocess.py
root@72132server:~/python/multiprocess# vi multprocess.py
root@72132server:~/python/multiprocess# ps -ef | grep multi
root 24064 23930 0 20:45 pts/3 00:00:00 grep multi
root@72132server:~/python/multiprocess# ps -ef | grep multi
root 24066 23930 0 20:45 pts/3 00:00:00 grep multi
root@72132server:~/python/multiprocess# ps -ef | grep multi
root 24069 23930 0 20:45 pts/3 00:00:00 grep multi
root@72132server:~/python/multiprocess# ps -ef | grep multi
root 24071 23930 0 20:45 pts/3 00:00:00 grep multi
root@72132server:~/python/multiprocess# ps -ef | grep multi
root 24073 23930 0 20:46 pts/3 00:00:00 grep multi
root@72132server:~/python/multiprocess# ps -ef | grep multi
root 24075 23930 0 20:46 pts/3 00:00:00 grep multi
root@72132server:~/python/multiprocess#
2)스 크 립 트 실행
root@72132server:~/python/multiprocess# vi multprocess.py
root@72132server:~/python/multiprocess# python multprocess.py
hello world!!! 0
hello world!!! 1
hello world!!! 2
hello world!!! 3
hello world!!! 4
hello world!!! 5
hello world!!! 6
hello world!!! 7
hello world!!! 8
hello world!!! 9
hello world!!! 10
hello world!!! 11
2,100 개 동시 운행
root@72132server:~/python/multiprocess# ls
multprocess.py
root@72132server:~/python/multiprocess# cat multprocess.py
#!/usr/bin/python
# --*-- coding:utf-8 --*--
from multiprocessing import Process,Lock# ,
import time,os
def sayhi(i):
print 'hello world!!!', i
time.sleep(10)
#lock = Lock()
for n in range(100):# n=100
p = Process(target=sayhi,args=(n,))# def, def , args , args() 。
p.start()
p.join()# 。
root@72132server:~/python/multiprocess#
root@72132server:~/python/multiprocess# vi multprocess.py
root@72132server:~/python/multiprocess# cat multprocess.py
#!/usr/bin/python
# --*-- coding:utf-8 --*--
from multiprocessing import Process,Lock# ,
import time,os
def sayhi(i):
print 'hello world!!!', i
time.sleep(10)
#lock = Lock()
for n in range(100):# n=100
p = Process(target=sayhi,args=(n,))# def, def , args , args() 。
p.start()
#p.join()# 。
root@72132server:~/python/multiprocess#
운행 상황1)프로 세 스 보기
2)스 크 립 트 실행(1 초 완료)
root@72132server:~/python/multiprocess# python multprocess.py
hello world!!! 0
hello world!!! 2
hello world!!! 3
hello world!!! 5
hello world!!! 7
hello world!!! 8
hello world!!! 6
hello world!!! 9
hello world!!! 10
hello world!!! 11
hello world!!! 14
hello world!!! 4
hello world!!! 15
hello world!!! 16
hello world!!! 1
hello world!!! 13
hello world!!! 18
hello world!!! 20
hello world!!! 19
hello world!!! 21
hello world!!! 12
hello world!!! 17
hello world!!! 23
hello world!!! 24
hello world!!! 26
hello world!!! 27
hello world!!! 22
hello world!!! 29
hello world!!! 31
hello world!!! 32
hello world!!! 33
hello world!!! 34
hello world!!! 28
hello world!!! 25
hello world!!! 30
hello world!!! 35
hello world!!! 36
hello world!!! 39
hello world!!! 41
hello world!!! 37
hello world!!! 40
hello world!!! 42
hello world!!! 43
hello world!!! 46
hello world!!! 47
hello world!!! 48
hello world!!! 38
hello world!!! 44
hello world!!! 45
hello world!!! 50
hello world!!! 51
hello world!!! 53
hello world!!! 54
hello world!!! 55
hello world!!! 57
hello world!!! 49
hello world!!! 58
hello world!!! 59
hello world!!! 60
hello world!!! 61
hello world!!! 62
hello world!!! 63
hello world!!! 64
hello world!!! 65
hello world!!! 66
hello world!!! 67
hello world!!! 68
hello world!!! 69
hello world!!! 56
hello world!!! 70
hello world!!! 52
hello world!!! 71
hello world!!! 72
hello world!!! 73
hello world!!! 76
hello world!!! 74
hello world!!! 78
hello world!!! 79
hello world!!! 80
hello world!!! 82
hello world!!! 77
hello world!!! 83
hello world!!! 84
hello world!!! 85
hello world!!! 86
hello world!!! 87
hello world!!! 81
hello world!!! 91
hello world!!! 75
hello world!!! 89
hello world!!! 92
hello world!!! 88
hello world!!! 90
hello world!!! 93
hello world!!! 95
hello world!!! 94
hello world!!! 96
hello world!!! 98
hello world!!! 9
더 많은 파 이 썬 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.본 논문 에서 말 한 것 이 여러분 의 Python 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python의 None과 NULL의 차이점 상세 정보그래서 대상 = 속성 + 방법 (사실 방법도 하나의 속성, 데이터 속성과 구별되는 호출 가능한 속성 같은 속성과 방법을 가진 대상을 클래스, 즉 Classl로 분류할 수 있다.클래스는 하나의 청사진과 같아서 하나의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.