Flask 上下文管理-- (session,request,current_app的傳遞)

來源:互聯網
上載者:User

標籤:綁定   設定   協程   sgi   func   val   print   基於   cto   

Flask session,request,current_app的傳遞


1 flask的 request, session 和 current_app 都是 設定方式比較新穎 -- 通過上下文管理的方式實現的

每次請求進來app.run調用 call 方法, 建立 一個本地線程(唯一標識作為鍵) -- 然後把執行個體化的對象push到一個地方,在請求結束後返回的時候 pop 掉local = {        '標識':{'stack':[RequestContext(),]}        }

2 補充 partial 函數

其實就是函數調用的時候,有多個參數 參數,但是其中的一個參數已經知道了,我們可以通過這個參數重新綁定一個新的函數,然後去調用這個新函數。from functools import partialdef f(a,b):    return a + bf1 = partial(f,10)print(f1(5))-->> 15

3 唯一標識

theading_local  -->> 每一個線程 建立一個from greenlet import getcurrent as get_ident可以基於 greenlet -->> 粒度更細        比如 wsgi  -- 有基於線程的,也有基於協程實現的本地線程:                    import threading    local_values = threading.local()    def func(num):        local_values.name = num        import time        time.sleep(1)        print(local_values.name, threading.current_thread().name)    for i in range(20):        th = threading.Thread(target=func, args=(i,), name='線程%s' % i)        th.start()

Flask 上下文管理-- (session,request,current_app的傳遞)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.