Home Backend Development Python Tutorial A simple understanding of Python multi-threading and thread locks (code)

A simple understanding of Python multi-threading and thread locks (code)

Sep 14, 2018 pm 05:16 PM
python multithreading

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打印结果
主线程结束---------
'''
Copy after login

threading .currentThread: Get the current thread object

@The code here indicates that the child threads share variables in the same process

#!/usr/bin/env python3
from threading import Thread
from time import sleep
import os

# Create thread function
def music():
global a
print("a=",a)
a = 10000
for i in range(5):
sleep(1)
print("1212")

a = 1
t = Thread(target = music)
t.start()
t.join()
print("a of the main thread =",a) Create your own thread class

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()
Copy after login

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()
Copy after login

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     ...
Copy after login

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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to Use Python to Find the Zipf Distribution of a Text File How to Use Python to Find the Zipf Distribution of a Text File Mar 05, 2025 am 09:58 AM

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

How Do I Use Beautiful Soup to Parse HTML? How Do I Use Beautiful Soup to Parse HTML? Mar 10, 2025 pm 06:54 PM

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

Mathematical Modules in Python: Statistics Mathematical Modules in Python: Statistics Mar 09, 2025 am 11:40 AM

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

How to Perform Deep Learning with TensorFlow or PyTorch? How to Perform Deep Learning with TensorFlow or PyTorch? Mar 10, 2025 pm 06:52 PM

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

Serialization and Deserialization of Python Objects: Part 1 Serialization and Deserialization of Python Objects: Part 1 Mar 08, 2025 am 09:39 AM

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

What are some popular Python libraries and their uses? What are some popular Python libraries and their uses? Mar 21, 2025 pm 06:46 PM

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

How to Create Command-Line Interfaces (CLIs) with Python? How to Create Command-Line Interfaces (CLIs) with Python? Mar 10, 2025 pm 06:48 PM

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.

Scraping Webpages in Python With Beautiful Soup: Search and DOM Modification Scraping Webpages in Python With Beautiful Soup: Search and DOM Modification Mar 08, 2025 am 10:36 AM

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

See all articles