逐次処理
例文
The system uses serial operation to process requests one at a time.
そのシステムは要求を一件ずつ処理するために逐次処理を用いる。
コアイメージ
逐次処理は要求や命令を順に一つずつ処理し同時実行を行わない方式を指す
英英
A processing mode in which requests or commands are handled one by one in order so that no two are processed simultaneously.
語源
serial operationは、逐次処理という意味で英語のserial(連続・列)と operation の結合により、順番に行うという意味合いで用いられる語である。
コラム
- ソフトウェアでは逐次処理は処理を順に実行して状態を逐次更新する方式であり、同期が単純な反面並列方式よりスループットが低くなる場合がある。
例文
We implemented sequential operations to handle user requests one at a time.
ユーザーの要求を1件ずつ処理するために逐次処理を実装した。
コアイメージ
命令や処理を一つずつ順に実行して結果を得る流れとしての逐次処理
英英
A process in which actions or computations are performed one after another in a defined order rather than simultaneously.
語源
sequential operationは、sequentialがラテン語sequi由来で『続く』を表し、operationがラテン語operari由来で『作業や処理』を表す語が結びついて『順に行われる処理』を意味する
コラム
- 逐次処理は処理を順に実行する方式で並列処理と比べて実装やデバッグが単純になる点が設計での判断材料となる