5 Matching Annotations
  1. Apr 2026
    1. We spent days loading the system with hundreds of threads, refining rough edges and polishing corners that developers may never see.

      文章提到团队使用'数百个线程'进行了数天的压力测试,这是一个具体的工作量指标。'数百个'虽然不是精确数字,但表明系统设计考虑了大规模并发场景。这种大规模测试表明开发团队对系统稳定性的重视程度,但缺乏具体的线程数量上限和性能指标数据。

  2. Sep 2022
  3. Mar 2020
    1. I would like to make an appeal to core developers: all design decisions involving involuntary session creation MUST be made with a great caution. In case of a high-load project, avoiding to create a session for non-authenticated users is a vital strategy with a critical influence on application performance. It doesn't really make a big difference, whether you use a database backend, or Redis, or whatever else; eventually, your load would be high enough, and scaling further would not help anymore, so that either network access to the session backend or its “INSERT” performance would become a bottleneck. In my case, it's an application with 20-25 ms response time under a 20000-30000 RPM load. Having to create a session for an each session-less request would be critical enough to decide not to upgrade Django, or to fork and rewrite the corresponding components.
  4. Feb 2020