(尤指计算机/系统设计中)“慢路径”:为少见情况、复杂情况或需要额外检查/处理的请求所走的处理流程,通常比“快路径(fast path)”更耗时;与优化的常见流程相对。
/ˈsloʊ pæθ/
The system uses the slow path only when the cache misses.
只有在缓存未命中时,系统才会走慢路径。
Most requests take the fast path, but authentication failures are handled on the slow path with extra logging and checks.
大多数请求走快路径,但认证失败会在慢路径中处理,并进行额外的记录与检查。
“path”在这里指“处理路径/流程(code path)”。“slow path”源自工程与计算机领域的对比说法:把常见且已优化的流程称为“fast path”,把更少发生、需要更多步骤或回退处理的流程称为“slow path”。这种命名也借用了现实交通中“快/慢车道”的直观隐喻。