Please enable JavaScript.
Coggle requires JavaScript to display documents.
async & Performance - Coggle Diagram
async & Performance
Asynchrony
-
-
Callbacks
callback nesting, callback hell
Promises
- pending
- fulfilled
- rejected
-
Promise Patterns
- Promise.all()
- Promise.any()
- Promise.race()
-
Performance
Web Worker
-
-
Common Uses
- intensive math calculations
- sorting large data sets
- data operations (compression, audio analysis, image pixel manipulations)
- high-traffic network communication
-
SIMD
Single Instruction, Multiple Data
-
-