当前位置:网站首页>Multithreading and concurrent programming (2)
Multithreading and concurrent programming (2)
2022-07-06 07:09:00 【And ν】
Catalog
Multithreading and concurrent programming ( Two )
Process creation -Proccess Subclass
Multithreading and concurrent programming ( Two )
Process creation -Proccess Subclass
You can also create processes by using classes , You can customize - One class , Inherit Process class , Every time this class is instantiated , Is equivalent to instantiating a process object .
[ Example ] Inherit Process Class , rewrite run0 Method to create a process
# The import module
from multiprocessing import Process
from time import sleep
import time
# Defining classes
class ClockProcess(Process):
# Reinitialize the method
def __init__(self,interval):
Process.__init__(self)
self.interval=interval
def run(self):
# Create child process
print(" The time when the subprocess starts executing :{}".format(time.ctime()))
sleep(self.interval)
print(" Sub process execution end time :{}".format(time.ctime()))
if __name__ =="__main__":
p=ClockProcess(4)
p.start()
p.join()
print(" End of main process ")The process of pool
Using Python When it comes to system management , In particular, operating multiple file directories at the same time , Or remote control of multiple hosts , Parallel operation can save a lot of time . When the number of objects to be manipulated is small , Can be used directly multiprocessing Medium Process Dynamic generation of multiple processes , A dozen are fine , But if it's a hundred , Thousands of goals , Manually limiting the number of processes is too cumbersome , At this time, it can play the role of process pool .
Pool Can provide a specified number of processes , For users to call , When a new request is submitted to pool In the middle of the day , If the pool is not full , Then it will create - A new process Used to execute the request ; But if the number of processes in the pool has reached the specified maximum , Then the request will wait , Until there are processes in the pool , To create a new process .Pool The syntax of is as follows :
Pool ([numprocess [ initializer [, initrg]])among numprocess Is the number of processes to create . If you omit this parameter , Will use cpu _count() Value .Initializer Is the callable object to be executed when each worker process starts .Initargs It's to pass on to initializer Parameter Yuanzu .Initializer The default is None.
Pool Example method table
| Method | describe |
|---|---|
| apply (fune [, args, [, kwargs]]) | Execute functions in a pool worker process (*arss, **kwares), And then return the result . |
| apply_async(func,[,args[,kwargs[,callback]]]) | stay Functions are executed asynchronously in a pool worker process (*arss, **kwarss), And then return the result . The result of this method is AsyncResult Class , It can be used later to get the final result .Callback Is a callable object , Accept input parameters . When func When the result of becomes available , Pass on to immediately callback. Callback Do not perform any blocking operations , Otherwise, it will block receiving the results of other asynchronous operations . |
| close() | Close process pool , Prevent from entering - - Step by step . If there are still pending operations , They will be completed before the work process is terminated |
| join() | Wait for all worker processes to exit . This method can only be used in close () perhaps terminate () Call after method |
| imap( func, iterable [,chunksize] ) | map () One of the versions of the function , Return iterators instead of result lists |
| imap unordered( fune. ,iterable [ ,chunksize] ) | Same as imap() The function is the same , Only the order of results is arbitrarily determined according to the time received from the work process |
| map( func, iterable [,chunksize] ) | The callable object fune Apply to iterable. All items in , Then return the results in the form of a list . By way of iterable Divide into blocks and assign work to work processes , This operation can be performed in parallel .chunksize. Specify the number of items in each block . If the quantity is large , Can increase chunksize. To improve performance |
| map_ asyne( fune, iterable[, chunksize[,callback]] ) | Same as map () function , But the result is returned asynchronously . The return value is AsyncResult Class , Available later and get results .Callback An adjustable object that accepts a parameter . Provided callable, When the results become available , Will call... With the result callable. |
| terminate() | That is, terminate all working processes , At the same time, do not perform any cleanup or end any pending work . If p Be recycled , This function will be called automatically . |
| get( [ timeout] ) | Return results , Wait for results to arrive if necessary .Timeout Is an optional timeout . If the result does not arrive within the specified time , Will lead to multiprocessing. TimeoutError abnormal . If an exception is thrown in a remote operation , It will be raised again when this method is called |
| ready() | If the call is complete , Then return to True |
| sucessful() | If the call completes without throwing an exception , return True. Call this method before the result is ready. , Will lead to AssertionError abnormal |
| wait( [timeout] ) | Wait for results to become available .Timeout Is an optional timeout |
Be careful :
apply_ async(func[, args[, kwds[, callback]]) It's non blocking ,apply(func[, args[, kwds]) It's blocked
[ Example ] Use of process pools ( Non blocking )
# The import module
import multiprocessing
import time
# The task function executed by the process
def func(msg):
print('start',msg)
time.sleep(3)
print('end',msg)
if __name__=='__main__':
# Create initialization 3 The process pool of
pool=multiprocessing.Pool(3)
# Add tasks
for i in range(1,6):
msg=' Mission %d'%i
pool.apply_async(func,(msg,))
# If the process no longer receives new requests call close
pool.close()
# Wait for the subprocess to finish
pool.join()
边栏推荐
- Is software testing outsourcing going or not? Three years' real outsourcing experience tells you
- kubernetes集群搭建Zabbix监控平台
- 这个高颜值的开源第三方网易云音乐播放器你值得拥有
- 《从0到1:CTFer成长之路》书籍配套题目(周更)
- You deserve this high-value open-source third-party Netease cloud music player
- Top test sharing: if you want to change careers, you must consider these issues clearly!
- 18.多级页表与快表
- Latex文字加颜色的三种办法
- UWA Pipeline 2.2.1 版本更新说明
- [server data recovery] case of offline data recovery of two hard disks of IBM server RAID5
猜你喜欢

Path analysis model

攻防世界 MISC中reverseMe简述
![[daily question] 729 My schedule I](/img/6b/a9fef338ac09caafe628023f066e1f.png)
[daily question] 729 My schedule I

When my colleague went to the bathroom, I helped my product sister easily complete the BI data product and got a milk tea reward

树莓派串口登录与SSH登录方法

顶测分享:想转行,这些问题一定要考虑清楚!

18.多级页表与快表

Setting and using richview trvstyle template style

Cookie技术&Session技术&ServletContext对象

ROS学习_基础
随机推荐
微信脑力比拼答题小程序_支持流量主带最新题库文件
Simple use of MySQL database: add, delete, modify and query
Yield method of tread
Wechat official account infinite callback authorization system source code, launched in the whole network
Development of entity developer database application
Hydra common commands
ROS learning_ Basics
开源的网易云音乐API项目都是怎么实现的?
BIO模型实现多人聊天
Arduino tutorial - Simon games
Proteus -- Serial Communication parity flag mode
18.多级页表与快表
Is software testing outsourcing going or not? Three years' real outsourcing experience tells you
leetcode704. Binary search (find an element, simple, different writing)
RichView TRVStyle 模板样式的设置与使用
【Hot100】739. 每日溫度
编译,连接 -- 笔记 -2
Uncaught TypeError: Cannot red propertites of undefined(reading ‘beforeEach‘)解决方案
Supporting title of the book from 0 to 1: ctfer's growth road (Zhou Geng)
Visitor tweets about how you can layout the metauniverse