Revalue the stock, three lookups at a time
Requirement
A warehouse holds stock items, each with a SKU, an on-hand quantity, and a book price. Refresh every unit price from a price service — at most three lookups in flight — falling back to the book price for SKUs the service doesn't know. Print the revalued stock total and how many items used the fallback. The service is simulated in the code below with a fixed delay; both versions must print the lines shown under Expected output.
Expected output
stock value: $4280.10 fallback prices used: 2 max lookups in flight: 3
Side by side
Native Dart
FxDart
Why they differ
Two hard parts stack here. The lookup must not lose its item —
attach keeps each stock line beside the price the service
returned (or null), which is what makes the fallback
r.$2 ?? r.$1.bookPrice a one-liner. And the
fan-out must be bounded — concurrent(3) is the limit as an
operator, since attach rides the same parallel-safe
machinery as map. The tallies fall out of the vocabulary:
sumBy for the total, countWhere for the
fallback count.
The native version has to build all of it: a shared-cursor worker pool
for the limit, hand-made (item, price) records so the
input survives the async hop, pre-sized result slots to keep order,
and a where(…).length pass for the count. None of it is
hard — all of it is ceremony that buries the four-step task.
Benchmark
Async case: the headline scale is N = 100,000, not 1,000,000. Every element costs an event-loop turn on both sides, so a million real awaits would measure Dart's event loop for minutes — not the pipeline. Delays are zero-length and the example's concurrency limit is kept; what the bars compare is the pipeline machinery.
N = 100
Time Tie
Peak memory Tie
N = 10,000
Time Native wins
Peak memory FxDart wins
N = 100,000
Time Native wins
Peak memory Tie
Bars are medians of repeated timed iterations in fresh processes per side (small N is batched for timer resolution). Sides within 5% of each other — or within 0.6 ms, a difference no person can perceive — count as a tie; close relative races are re-measured up to 5 runs. In an app, anything under a few milliseconds is invisible to the user regardless of which bar is shorter. Memory is peak process RSS. The Dart VM and the dataset are identical on both sides, so the difference between the two bars is what the pipeline itself holds onto.