91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python Tornado框架的使用方法有哪些

發布時間:2020-10-27 19:43:06 來源:億速云 閱讀:199 作者:Leah 欄目:開發技術

python Tornado框架的使用方法有哪些?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

安裝:

pip install tornado

View層

'''
@File    : views_service.py
@Copyright : rainbol
@Date    : 2020/8/31
@Desc    :
'''
import threading
import time
import tornado.web
import tornado
import tornado.ioloop
import tornado.web
import tornado.gen
from tornado.concurrent import run_on_executor
from concurrent.futures import ThreadPoolExecutor
from uuid import uuid4
import random

all_count = 0
big_list = {}


class ServiceHandler(tornado.web.RequestHandler):
  executor = ThreadPoolExecutor(20) # 最大線程數 必須定義一個executor的屬性,然后run_on_executor裝飾器才會有用。

  @run_on_executor # 在這個方法下,線程內運行;query函數被run_on_executor包裹(語法糖),將該函數的執行傳遞給線程池executor的線程執行,優化了處理耗時性任務,以致達到不阻塞主線程的效果。
  def time_demo(self, tid, uid):
    time.sleep(tid)
    threading_id = threading.current_thread().ident
    big_list[uid] = threading_id

  @tornado.gen.coroutine # 異步、協程處理;增加并發量
  def post(self):
    global all_count
    all_count += 1
    uid = str(uuid4())
    yield self.time_demo(random.randint(1, 100), uid) # 模擬業務處理,使用yield來實現異步阻塞請求
    r = {'status': 'True', '線程id': '%s' % big_list[uid], "count": all_count}

    self.write(tornado.escape.json_encode(r)) # 寫入返回信息寫入response
    self.finish() # 結束服務

  def get(self):
    return self.post()

__init__.py

'''
@File    : __init__.py
@Copyright : rainbol
@Date    : 2020/8/31
@Desc    :
'''
import tornado.web # web框架
import tornado.httpserver # http服務
import tornado.ioloop # 輸入輸出事件循環
import tornado.options # 配置工具
from tornado.options import options, define
from app.config import configs
from app.urls import urls
define('port', default=8000, type=int, help='運行端口')


# 自定義應用
class CustomApplication(tornado.web.Application):
  def __init__(self): # 重寫構造方法
    # 指定路由規則
    handlers = urls
    # 指定配置文件
    settings = configs
    super(CustomApplication, self).__init__(handlers=handlers, **settings)


# 定義服務
def create_server():
  # 允許在命令行中啟動
  #tornado.options.parse_command_line()
  # 創建http服務
  http_server = tornado.httpserver.HTTPServer(
    CustomApplication() # 注意要實例化
  )
  # 綁定監聽的端口
  http_server.listen(options.port)
  # 啟動輸入輸出事件循環
  tornado.ioloop.IOLoop.instance().start()
'''
@File    : manage.py
@Copyright : rainbol
@Date    : 2020/8/31
@Desc    :
'''
from app.views import create_server



if __name__ == '__main__':
  create_server()

路由

from app.views.views_index import IndexHandler as index
from app.views.views_service import ServiceHandler as service

# 配置路由和配置到映射規則

urls = [
  (r"/index", index),
  (r"/demo", service),
]

關于python Tornado框架的使用方法有哪些問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长沙县| 永修县| 蕲春县| 郴州市| 吉林市| 景德镇市| 京山县| 原阳县| 绥中县| 兴隆县| 洛浦县| 云浮市| 巴楚县| 信丰县| 兴仁县| 冀州市| 舒兰市| 株洲市| 卓尼县| 房产| 东丰县| 高安市| 宜春市| 枝江市| 郯城县| 应城市| 弋阳县| 星座| 萨迦县| 三台县| 嘉祥县| 兰西县| 金塔县| 太白县| 浦北县| 汤原县| 漳浦县| 家居| 康定县| 铁力市| 大港区|