由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 有人熟悉Python里的threading吗
相关主题
python下的expect用多线程怎么比单线程还慢呢?
mpirun vs script写thread safe程序现在也是程序员必须要掌握的了吧
问一个python multiprocessing问题如果一个core,多线程还有必要吗?
How to use multi-core to speed Python program使用CPython要避免多线程?
学python要学到什么程度才算professional?来,讨论个问题
python + django 2天搞定。python的muti process和multi threading有啥优劣?
多线程编程前景如何?请问python能否在一个子程序里边创立独立的命名空间?
c++下如何实现多线程?刚开始看python
相关话题的讨论汇总
话题: python话题: threading话题: 熟悉话题: 有人话题: thread
进入Programming版参与讨论
1 (共1页)
d*****u
发帖数: 17243
1
我用它生成多线程,用Queue传递数据
发现比单线程的程序反而更慢,按说还是CPU intensive的计算
网上一搜好多人有这个问题
是不是用processing模块生成子程序能快一些
w****k
发帖数: 6244
2
python thread is not real multiple thread
use multiprocess if u want use multi cpus

【在 d*****u 的大作中提到】
: 我用它生成多线程,用Queue传递数据
: 发现比单线程的程序反而更慢,按说还是CPU intensive的计算
: 网上一搜好多人有这个问题
: 是不是用processing模块生成子程序能快一些

k**********g
发帖数: 989
3

http://stackoverflow.com/questions/6915191/simple-ipc-between-c

【在 w****k 的大作中提到】
: python thread is not real multiple thread
: use multiprocess if u want use multi cpus

b*******s
发帖数: 5216
4
多线程只是保证每个任务都按照优先级得到响应
速度上如果是单一任务,或者是相互严重依赖的任务
是无区别的,甚至更慢

【在 d*****u 的大作中提到】
: 我用它生成多线程,用Queue传递数据
: 发现比单线程的程序反而更慢,按说还是CPU intensive的计算
: 网上一搜好多人有这个问题
: 是不是用processing模块生成子程序能快一些

y****e
发帖数: 23939
5
GIL
1 (共1页)
进入Programming版参与讨论
相关主题
刚开始看python学python要学到什么程度才算professional?
多线程 编程,process 和 thread 的一些问题。python + django 2天搞定。
多线程的thread safety checking tool?多线程编程前景如何?
Perl多线程的问题c++下如何实现多线程?
python下的expect用多线程怎么比单线程还慢呢?
mpirun vs script写thread safe程序现在也是程序员必须要掌握的了吧
问一个python multiprocessing问题如果一个core,多线程还有必要吗?
How to use multi-core to speed Python program使用CPython要避免多线程?
相关话题的讨论汇总
话题: python话题: threading话题: 熟悉话题: 有人话题: thread