Found 9 bookmarks
Custom sorting
Writing a Postgres Extension With Pgrx for Visual Query Plans
Writing a Postgres Extension With Pgrx for Visual Query Plans
When I worked at SingleStoreDB, we built this SQL syntax for instantly jumping into a visual query plan from the CLI: sql EXPLAIN UI select customer, sum(cost_cents) as revenue from notifications n inner join offers o on o.offer_id = n.offer_id group by ts, customer order
·davidgomes.com·
Writing a Postgres Extension With Pgrx for Visual Query Plans
How to build a job queue with Rust and PostgreSQL
How to build a job queue with Rust and PostgreSQL
(or in any other language such as Go, Node.js or python) Job queues are a central piece of any web application. It enables background jobs, buffering to handle surges in traffic, async messaging, batching and many other great things. Thus, this is all natural that many vendors are offering various
·kerkour.com·
How to build a job queue with Rust and PostgreSQL