接口里有个逻辑如下
st = time.time() most_common_id = Counter(id_list).most_common(5000) ed = time.time() print("most common cost time %s", et - st)
其中,id_list是个 15w 长度的 list,Counter 之后是 10w 长度。
id_list
但在接口里要花接近 400ms,脚本直接执行的话,只要 200ms,都是平均时长。