Python论坛  - 讨论区

标题:[python-chinese] hi,我想知道python多线程的能力

2007年03月15日 星期四 10:26

Kula kulasama在gmail.com
星期四 三月 15 10:26:21 HKT 2007

python多线程能力是否强大。和ruby多线程能力对比呢?或者。和对多线程支持很好的java比呢。
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20070315/65bc2dc3/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 10:36

hutuworm hutuworm在gmail.com
星期四 三月 15 10:36:02 HKT 2007

check it out:
http://www.stackless.com/

On 3/15/07, Kula <kulasama在gmail.com> wrote:
> python多线程能力是否强大。和ruby多线程能力对比呢?或者。和对多线程支持很好的java比呢。
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request在lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>


-- 
In doG We Trust

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 10:36

ro rosettas在gmail.com
星期四 三月 15 10:36:38 HKT 2007

On 3/15/07, Kula <kulasama在gmail.com> wrote:
> python多线程能力是否强大。和ruby多线程能力对比呢?或者。和对多线程支持很好的java比呢。

能力指什么

-- 
with kind regards

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 10:37

Zoom.Quiet zoom.quiet在gmail.com
星期四 三月 15 10:37:11 HKT 2007

On 3/15/07, Kula <kulasama在gmail.com> wrote:
> python多线程能力是否强大。和ruby多线程能力对比呢?或者。和对多线程支持很好的java比呢。
> _______________________________________________

不要对比,使用就好,
Py 虚拟机的稳定,足以使用多进程来进行集团式处理,
线程,进程不是我们应该关注的,
关注问题的Pythonic 解决吧

-- 
'''Time is unimportant, only life important!
http://zoomquiet.org
blog在http://blog.zoomquiet.org/pyblosxom/
wiki在http://wiki.woodpecker.org.cn/moin/ZoomQuiet
scrap在http://floss.zoomquiet.org
douban在http://www.douban.com/people/zoomq/
____________________________________
Pls. use OpenOffice.org to replace M$ Office.
     http://zh.openoffice.org
Pls. use 7-zip to replace WinRAR/WinZip.
     http://7-zip.org/zh-cn/
You can get the truely Freedom 4 software.
'''

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 10:55

yi huang yi.codeplayer在gmail.com
星期四 三月 15 10:55:58 HKT 2007

>
> python多线程能力是否强大。和ruby多线程能力对比呢?或者。和对多线程支持很好的java比呢。
>

python 的线程是 os线程,或者说 native线程,是真的线程,ruby 并不支持真正的线程,它的线程是伪线程。
但和 java 相比,python 虽然有真正的线程但由于 GIL 的存在,python 里的线程并不能真正并行执行,也就是说还不能利用多核优势。

check it out:
> http://www.stackless.com/


stackless 可以说是 python 下面的伪线程实现。


-- 
http://codeplayer.blogspot.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20070315/aa6f26e0/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 11:38

Kula kulasama在gmail.com
星期四 三月 15 11:38:55 HKT 2007

如果我想写利用多核优势的python程序.该怎么办呢?
写多进程程序集团处理?利用stackless写多线程.未来cpu肯定是多核为主.我在想如何用python尽可能的利用计算资源.毕竟有的时候速度还是一个很重要的指标.

On 3/15/07, yi huang <yi.codeplayer at gmail.com> wrote:
>
> python多线程能力是否强大。和ruby多线程能力对比呢 ?或者。和对多线程支持很好的java比呢。
> >
>
> python 的线程是 os线程,或者说 native线程,是真的线程,ruby 并不支持真正的线程,它的线程是伪线程。
> 但和 java 相比,python 虽然有真正的线程但由于 GIL 的存在,python 里的线程并不能真正并行执行,也就是说还不能利用多核优势。
>
> check it out:
> > http://www.stackless.com/
>
>
> stackless 可以说是 python 下面的伪线程实现。
>
>
>
> --
> http://codeplayer.blogspot.com/
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20070315/7fe1a517/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 11:59

yi huang yi.codeplayer在gmail.com
星期四 三月 15 11:59:08 HKT 2007

你搜一搜以前的讨论吧。

On 3/15/07, Kula <kulasama at gmail.com> wrote:
>
> 如果我想写利用多核优势的python程序.该怎么办呢?
> 写多进程程序集团处理?利用stackless写多线程.未来cpu肯定是多核为主.我在想如何用python尽可能的利用计算资源.毕竟有的时候速度还是一个很重要的指标.
>
> On 3/15/07, yi huang <yi.codeplayer at gmail.com> wrote:
>
> > python多线程能力是否强大。和ruby多线程能力对比呢 ?或者。和对多线程支持很好的java比呢。
> > >
> >
> > python 的线程是 os线程,或者说 native线程,是真的线程,ruby 并不支持真正的线程,它的线程是伪线程。
> > 但和 java 相比,python 虽然有真正的线程但由于 GIL 的存在,python
> > 里的线程并不能真正并行执行,也就是说还不能利用多核优势。
> >
> > check it out:
> > > http://www.stackless.com/
> >
> >
> > stackless 可以说是 python 下面的伪线程实现。
> >
> >
> >
> > --
> > http://codeplayer.blogspot.com/
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> >
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>



-- 
http://codeplayer.blogspot.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20070315/a1fbb7c0/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 12:08

Kula kulasama在gmail.com
星期四 三月 15 12:08:06 HKT 2007

求关键字.我用多核,线程来搜都搜不到.可能是我加入邮件列表比较晚吧

On 3/15/07, yi huang <yi.codeplayer at gmail.com> wrote:
>
> 你搜一搜以前的讨论吧。
>
> On 3/15/07, Kula <kulasama at gmail.com> wrote:
> >
> > 如果我想写利用多核优势的python程序.该怎么办呢?
> > 写多进程程序集团处理?利用stackless写多线程.未来cpu肯定是多核为主.我在想如何用python尽可能的利用计算资源.毕竟有的时候速度还是一个很重要的指标.
> >
> >  On 3/15/07, yi huang < yi.codeplayer at gmail.com> wrote:
> >
> > >  python多线程能力是否强大。和ruby多线程能力对比呢 ?或者。和对多线程支持很好的java比呢。
> > > >
> > >
> > > python 的线程是 os线程,或者说 native线程,是真的线程,ruby 并不支持真正的线程,它的线程是伪线程。
> > > 但和 java 相比,python 虽然有真正的线程但由于 GIL 的存在,python
> > > 里的线程并不能真正并行执行,也就是说还不能利用多核优势。
> > >
> > > check it out:
> > > > http://www.stackless.com/
> > >
> > >
> > > stackless 可以说是 python 下面的伪线程实现。
> > >
> > >
> > >
> > > --
> > > http://codeplayer.blogspot.com/
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese at lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > > Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> > >
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
>
>
>
> --
> http://codeplayer.blogspot.com/
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20070315/4a8017f4/attachment.html 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 12:15

3751 lwm3751在gmail.com
星期四 三月 15 12:15:16 HKT 2007

看看这里吧,
http://docs.python.org/api/threads.html
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20070315/808f843a/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 12:28

yi huang yi.codeplayer在gmail.com
星期四 三月 15 12:28:34 HKT 2007

On 3/15/07, Kula <kulasama at gmail.com> wrote:
>
> 求关键字.我用多核,线程来搜都搜不到.可能是我加入邮件列表比较晚吧
>
> On 3/15/07, yi huang <yi.codeplayer at gmail.com > wrote:
> >
> > 你搜一搜以前的讨论吧。
> >
>
GIL of Doom! <http://blog.ianbicking.org/gil-of-doom.html>
http://groups.google.com/group/python-cn/browse_thread/thread/47b73f6c9f45e10f/d1d6963503d79183?#d1d6963503d79183
http://www.google.com/search?q=GIL+site%3Apython.cn&ie;=utf-8&oe;=utf-8&aq;=t&rls;=org.mozilla:zh-CN:official&client;=firefox
http://groups.google.com/group/python-cn/search?group=python-cn&q;=gil&qt;_g=Search+this+group

-- 
http://codeplayer.blogspot.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20070315/b486c0fe/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2007年03月15日 星期四 13:08

Kula kulasama在gmail.com
星期四 三月 15 13:08:02 HKT 2007

好吧.看了一下讨论.发现python多线程支持不是很好..python未来有改进线程支持的计划没?

On 3/15/07, yi huang <yi.codeplayer at gmail.com> wrote:
>
> On 3/15/07, Kula <kulasama at gmail.com> wrote:
> >
> > 求关键字.我用多核,线程来搜都搜不到.可能是我加入邮件列表比较晚吧
> >
> > On 3/15/07, yi huang <yi.codeplayer at gmail.com > wrote:
> > >
> > > 你搜一搜以前的讨论吧。
> > >
> >
> GIL of Doom! <http://blog.ianbicking.org/gil-of-doom.html>http://groups.google.com/group/python-cn/browse_thread/thread/47b73f6c9f45e10f/d1d6963503d79183?#d1d6963503d79183
>
> http://www.google.com/search?q=GIL+site%3Apython.cn&ie;=utf-8&oe;=utf-8&aq;=t&rls;=org.mozilla:zh-CN:official&client;=firefox
>
>
> http://groups.google.com/group/python-cn/search?group=python-cn&q;=gil&qt;_g=Search+this+group
>
> --
> http://codeplayer.blogspot.com/
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://python.cn/pipermail/python-chinese/attachments/20070315/872d34f1/attachment.htm 

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号