


This article brings you a simple understanding (code) of Python multi-threading and thread locks. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Multi-threading threading module creates threads creates own thread class thread communication thread synchronization mutual exclusion method thread lock @need to understand! ! !
Multi-threading
What is a thread?
Threads are also a multi-tasking programming method that can use computer multi-core resources to complete the concurrent running of programs.
Threads are also called lightweight processes
Characteristics of threads
Threads are the smallest units allocated by computer multi-cores
A process can contain multiple Thread
A thread is also a running process that consumes computer resources. Multiple threads share the resources and space of the process
The creation and deletion of threads consumes far less resources than the process
The execution of multiple threads does not interfere with each other
Threads also have their own unique attributes, such as instruction set ID
threading module creates threads
t=threading.Thread( )
name: thread name, default value if empty, Tread-1, Tread-2, Tread-3
target: thread function
args: element Group, pass parameters to the thread function according to position
kwargs: dictionary, pass parameters to the county function according to key value
Function: Create thread object
Parameters
t.start(): Start the thread and automatically run the thread function
t.join([timeout]): Recycle the process
t.is_alive(): View the thread status
t.name(): View the thread name
t.setName(): Set the thread name
t.daemon attribute: By default, the main thread exits and does not affect the branch thread's continued execution. If set If True, the branch thread exits along with the main thread
t.daemon = True
t.setDaemon(Ture)
Setting method
#!/usr/bin/env python3 from threading import Thread from time import sleep import os # 创建线程函数 def music(): sleep(2) print("分支线程") t = Thread(target = music) # t.start() # ****************************** print("主线程结束---------") '''没有设置的打印结果 主线程结束--------- 分支线程 ''' '''设置为True打印结果 主线程结束--------- '''
threading .currentThread: Get the current thread object
@The code here indicates that the child threads share variables in the same process
Inspection point: use of the class, call the parent class The __init__ method, function *parameter passing and **parameter passing
from threading import Thread import time class MyThread(Thread): name1 = 'MyThread-1' def __init__(self,target,args=(), kwargs={}, name = 'MyThread-1'): super().__init__() self.name = name self.target = target self.args = args self.kwargs = kwargs def run(self): self.target(*self.args,**self.kwargs) def player(song,sec): for i in range(2): print("播放 %s:%s"%(song,time.ctime())) time.sleep(sec) t =MyThread(target = player, args = ('亮亮',2)) t.start() t.join()
Thread communication
Communication method: due to multiple threads sharing the memory of the process space, so communication between threads can be completed using global variables
Note: When using global variables between threads, a synchronization mutual exclusion mechanism is often required to ensure the security of communication
Thread synchronization mutual exclusion method
event
e = threading.Event(): Create an event object
e.wait([timeout]): Set the status. If it has been set, then this function will block, and the timeout is Timeout time
e.set: Change e to the setting state
e.clear: Delete the setting state
import threading from time import sleep def fun1(): print("bar拜山头") global s s = "天王盖地虎" def fun2(): sleep(4) global s print("我把限制解除了") e.set() # 解除限制,释放资源 def fun3(): e.wait() # 检测限制 print("说出口令") global s if s == "天王盖地虎": print("宝塔镇河妖,自己人") else: print("打死他") s = "哈哈哈哈哈哈" # 创建同步互斥对象 e = threading.Event() # 创建新线程 f1 = threading.Thread(target = fun1) f3 = threading.Thread(target = fun3) f2 = threading.Thread(target = fun2) # 开启线程 f1.start() f3.start() f2.start() #准备回收 f1.join() f3.join() f2.join()
Thread lock
lock = threading.Lock(): Create a lock object
lock.acquire(): Lock
lock.release(): Unlock
Also You can use with to lock
1 with lock: 2 ... 3 ...
Need to know! ! !
GIL problem of Python thread (global interpreter):
python---->Support multi-threading---->Synchronization mutual exclusion problem---->Added Lock solution---->Super lock (lock the interpreter)---->The interpreter can only interpret one thread at the same time--->Leading to low efficiency
Consequences:
An interpreter can only interpret and execute one thread at a time, so the Python thread efficiency is low. However, when encountering IO blocking, the thread will actively give up the interpreter, so the Python thread is more suitable for high-latency IO program concurrency
Solution
Try to use processes to complete concurrency (the same as not mentioned)
It is not appropriate to use the C interpreter (use C#, JAVA)
Try to use Concurrent operations are performed through a combination of multiple solutions, and threads are used as high-latency IO
The above is the detailed content of A simple understanding of Python multi-threading and thread locks (code). For more information, please follow other related articles on the PHP Chinese website!

This tutorial demonstrates how to use Python to process the statistical concept of Zipf's law and demonstrates the efficiency of Python's reading and sorting large text files when processing the law. You may be wondering what the term Zipf distribution means. To understand this term, we first need to define Zipf's law. Don't worry, I'll try to simplify the instructions. Zipf's Law Zipf's law simply means: in a large natural language corpus, the most frequently occurring words appear about twice as frequently as the second frequent words, three times as the third frequent words, four times as the fourth frequent words, and so on. Let's look at an example. If you look at the Brown corpus in American English, you will notice that the most frequent word is "th

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex

This article guides Python developers on building command-line interfaces (CLIs). It details using libraries like typer, click, and argparse, emphasizing input/output handling, and promoting user-friendly design patterns for improved CLI usability.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version
