DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Redux Ecosystem Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 196
medium
Redux Ecosystem
Why is a dedicated retry library generally unnecessary for straightforward retry-with-backoff logic in redux-saga?
A
redux-saga has no way to implement retry logic without an addon
B
A plain for-loop with try/catch, yield call(fn), and yield delay(ms) between attempts, composed from already-covered effects, is confirmed sufficient for the common case
C
Retry logic is impossible in generator functions
D
It's actually always necessary for production code
Check Answer