Parallel Sequential Scan
Leverage PostgreSQL 16's new parallel sequential scan capability to access large table data faster through multiple processes.
-- Example query benefiting from parallel scanning:
SELECT * FROM (SELECT generate_series(1,10000000) as id) s
WHERE id % 7 = 0
ORDER BY id;