3 CHN FAQ
Robert Huang edited this page 2023-02-12 11:25:32 +08:00
This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

English | 简体中文

FAQ

这是常见问题和答案的列表,与一展说明。

What's drogon's threading model and best practices?

Drgon在线程池上运行当调用app().run()会在该线程池中创建HTTP服务器线程和数据库线程。 它是一个基于顺序任务的系统。 因此建议在可能的情况下始终使用异步API或协程。 详见理解drogon的线程模型