mirror of
https://github.com/flynx/pWiki.git
synced 2025-10-28 09:30:07 +00:00
11 lines
417 B
Plaintext
11 lines
417 B
Plaintext
|
|
|
||
|
|
Avoiding Async functions
|
||
|
|
------------------------
|
||
|
|
|
||
|
|
We are explicitly avoiding clean async functions if there is a possibility
|
||
|
|
to return a value sync, especially in the genetal case. This is done to avoid
|
||
|
|
jugling contexts between execution frames when this is not necessary.
|
||
|
|
|
||
|
|
"await" is quite convenient but "async", if overused, can destroy performance by
|
||
|
|
playing ping-pong with lots of balls (promises) and frames.
|