The edge is where digital decisions happen close to the person, device, or place that needs them. Sometimes that means a global runtime. Sometimes it means a small device in the building.
Edge placement concept model
Illustrative relative scores — not measured latency
Central path
237 units
Closer path
70 units
The interactive model above is illustrative, not a benchmark. Real latency depends on network conditions, geography, runtime, data access, and the work performed for each request.
A useful rule of thumb
export function cacheHint(kind: 'static' | 'personal' | 'sensor') {
if (kind === 'static') return 'cache at the edge for days'
if (kind === 'personal') return 'render close, never cache private data publicly'
return 'process locally first, sync later'
}Edge thinking is mostly respect for context: the person, the room, the connection, and the cost of waiting.