标签: python multithreading web-applications webserver
假设我在Web应用程序中有以下静态方法。
@staticmethod def calc(x, y): # complex calculation
此功能将始终具有运行内存的副本。因此,多个用户同时使用此功能,每个用户是否必须等待该功能可用?
我试着了解CPU和内存级别的变化。