ended3월 24일· 1 sources
Postgres pipelines from the JVM with Bpdbi
Bpdbi를 활용한 JVM 환경의 Postgres 파이프라이닝
Why it matters
Bpdbi is a new JVM database library for Postgres that leverages the wire protocol's pipelining feature to eliminate per-query round-trip latency, which typically adds 8-10ms of idle waiting per transaction. Derived from the Vert.x SQL Client but stripped of reactive/async complexity, Bpdbi uses blocking I/O with Java 21 virtual threads and Postgres' binary protocol to deliver high performance with a small footprint. Unlike JDBC, which cannot pipeline queries, Bpdbi sends multiple queries without waiting for individual responses, making it especially beneficial for Row-Level Security workflows like those in Supabase.
1
Sources
+0
24h
—
Growth
175d
Active
BpdbiPostgresJVMpipeliningJDBCvirtual threads