99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀Python中最大的一把鎖
Python中最大的一把鎖
2022-08-19
收藏

作者:小K

來源:麥?zhǔn)寰幊?

今天可以來講解下GIL是個(gè)什么了。

?

GIL為什么是Python中最大的一把鎖?

GIL是Global Interpreter Lock的縮寫,翻譯過來就是全局解釋器鎖。

從字面上去理解,它就是鎖在解釋器頭上的一把鎖,它使Python代碼運(yùn)行變得有序。

假如有一段代碼:

print(1)print(2)print(3)print(4)print(5)print(6)

運(yùn)行之后,

123456

GIL通過確保在任何給定時(shí)間只運(yùn)行一個(gè)線程來防止競(jìng)爭(zhēng)條件

?

GIL確保在任何給定時(shí)間只有一個(gè)線程在運(yùn)行。

因此,不可能利用具有線程的多個(gè)處理器。

?

?

由于CPython的內(nèi)存管理不是線程安全的,GIL可以防止競(jìng)爭(zhēng)條件并確保線程安全。

?

突破GIL的封鎖

更換解釋器

Python有多個(gè)解釋器實(shí)現(xiàn)。分別用C、Java、C#和Python編寫的CPython、Jython、IronPython和PyPy是最受歡迎的。

GIL 僅存在于CPython的原始Python實(shí)現(xiàn)中。

?

那為什么不直接使用別的解釋器為主要開發(fā)用呢?

因?yàn)镃Python的庫(kù)最為豐富。

如果別的解釋器有支持你代碼中的模塊,那是可以直接移植過去使用的。

像Jython至今還沒有推出Python3,只停留在Python2時(shí)代。

?

用多進(jìn)程替代多線程

我將用三段代碼(單線程、多線程、多進(jìn)程)解決一個(gè)問題(把50000000通過n-=1減至0)。

通過對(duì)比他們運(yùn)行的所花費(fèi)的時(shí)間,看哪段代碼效率最高。

「單線程」

import timenum = 50000000def countdown(n): while n>0:        n -= 1start = time.time()countdown(num)end = time.time()print('花費(fèi)時(shí)間 -', end - start)

運(yùn)行結(jié)果:

花費(fèi)時(shí)間 - 3.7478301525115967

「多線程」

import timefrom threading import Threadnum = 50000000def countdown(n): while n>0:        n -= 1t1 = Thread(target=countdown, args=[num//2])t2 = Thread(target=countdown, args=[num//2])start = time.time()t1.start()t2.start()t1.join()t2.join()end = time.time()print('花費(fèi)時(shí)間 -', end - start)

運(yùn)行結(jié)果:

花費(fèi)時(shí)間 - 4.2221999168396

「多進(jìn)程」

from multiprocessing import Poolimport timenum = 50000000def countdown(n): while n>0:        n -= 1if __name__ == '__main__':    pool = Pool(processes=2)    start = time.time()    r1 = pool.apply_async(countdown, [num//2])    r2 = pool.apply_async(countdown, [num//2])    pool.close()    pool.join() end = time.time() print('花費(fèi)時(shí)間 -', end - start)

運(yùn)行結(jié)果:

花費(fèi)時(shí)間 - 2.307600975036621

對(duì)于「計(jì)算密集型任務(wù)」,Python的多線程比單線程還慢,

這是由于線程的創(chuàng)建和銷毀都要消耗資源(進(jìn)程消耗資源更大)。

「對(duì)比單線程和多線程就能感受到GIL這個(gè)枷鎖的束縛力了。」

用了多進(jìn)程后,運(yùn)行速度一下子從3.73縮短到2.30秒,證明多進(jìn)程還是能突破GIL的封鎖的。

?

多進(jìn)程底層是開了多個(gè)解釋器去運(yùn)行代碼,一個(gè)進(jìn)程一把GIL。

?

后記

Python三分鐘--GIL專題到這一期就結(jié)束了~

數(shù)據(jù)分析咨詢請(qǐng)掃描二維碼

若不方便掃碼,搜微信號(hào):CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個(gè)參數(shù)驗(yàn)證碼對(duì)象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個(gè)配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺(tái)檢測(cè)極驗(yàn)服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時(shí)表示是新驗(yàn)證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請(qǐng)參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計(jì)時(shí)完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請(qǐng)輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請(qǐng)輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }