this post was submitted on 11 Sep 2025
438 points (98.9% liked)

Programmer Humor

26332 readers
1009 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] dgdft@lemmy.world 18 points 4 days ago (1 children)

Just to tail on the “Postgres is a better document DB than Mongo” theme, there’s now a QuickJS procedural extension for postgres (in addition to the earlier but clunkier plv8):

https://github.com/plv8/pljs https://bellard.org/quickjs/quickjs.html

The rub is that you can yeet any document data you like into JSONB columns, and mung them efficiently and freely with JS — taking all the upsides of Mongo, yet letting you merge them seamlessly with the full capabilities of PG’s relational model.

[–] felbane@lemmy.world 4 points 3 days ago

This is fantastic.