mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
### What does this PR do? optimize advance method after this optimizations 100k req the query bellow in 1 connection takes 792ms instead of 6s ```sql SELECT CAST(1 AS UNSIGNED) AS x ``` 1mi req of the query bellow with 10 connections takes 57.41s - 62.5s instead of 162.50s, mysql2 takes 1516.94s for comparison ```sql SELECT * FROM users_bun_bench LIMIT 100 ``` ### How did you verify your code works? Tested and benchmarked + CI