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

Programmer Humor

26373 readers
1091 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
[–] F04118F@feddit.nl 89 points 5 days ago (12 children)

Shoutout to FerretDB doing God's work.

Putting data from apps that were built for MongoDB into Postgres.

https://github.com/FerretDB/FerretDB

And their lived experience trying to help the MongoDB ecosystem by building an open standard for document databases:

In 2021, we founded FerretDB with a bold vision: to return the document database market to its open source roots by creating the leading open source alternative to MongoDB, built on Postgres.

For years, we tirelessly advocated for an open standard. We built a popular product, collaborated with Microsoft to open source DocumentDB, and held high-level meetings with cloud providers and stakeholders to make the case for a standard that is similar to SQL, but for document databases.

In 2023, a MongoDB VP reached out to me. On a Zoom call, we were threatened with a lawsuit for building a compatible product. Being called a thief by a leader of a (then) $35B company was a moment of stark clarity on MongoDB's opinion about our work and the need for a standard. At the end of that call, I told them the industry would inevitably come together to create the open standard they refused to provide.

Their response? "They would never do that. They are our trusted partners."

Today, the market has spoken. The Linux Foundation has announced the adoption of the DocumentDB project [1] to create an open standard with MongoDB compatibility, the exact thing we were sued for earlier this year. [2]

This is a monumental win for developers and enterprises everywhere. It validates the years of work we've poured into this mission.

It is also telling that MongoDB's SSPL license has been abandoned by Elastic or Redis, the two prominent companies who were initially in favor of MongoDB's attempt to redefine open source. All clear signs that MongoDB's behavior is not appreciated by developers. [...]

https://www.linkedin.com/posts/farkasp_in-2021-we-founded-ferretdb-with-a-bold-activity-7365677216912859136-jNNJ

[–] dgdft@lemmy.world 18 points 5 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 5 days ago

This is fantastic.

load more comments (10 replies)