News
Entertainment
Science & Technology
Sport
Business & Money
Life
Culture & Art
Hobbies
8 | Follower
Franck Pachot
14.06.2025
DuckDB is a high-performance analytical database, but it is single-process, so it cannot replace an... Tagged with postgres, mongodb, duckdb, analytics.
13.06.2025
Many outdated or imprecise claims about transaction isolation levels in MongoDB persist. These claims... Tagged with mongodb, document, database, acid.
In a blog post titled "Schema Later" Considered Harmful on EDB's site, Michael Stonebraker... Tagged with mongodb, document, database, postgres.
In a blog post titled Comparison of JOINS: MongoDB vs. PostgreSQL on EDB's site, Michael Stonebraker... Tagged with mongodb, lookup, join, aggregation.
10.06.2025
07.06.2025
05.06.2025
PostgreSQL limits tuple sizes to a quarter of the block size, generally capping at 2KB. In document... Tagged with postgres, jsonb, document, database.
02.06.2025
PostgreSQL's Multi-Version Concurrency Control (MVCC) works around the challenge of in-place updates... Tagged with postgres, document, database, mongodb.
01.06.2025
30.05.2025
In recent years, MongoDB and PostgreSQL have gained popularity, representing the NoSQL and SQL camps,... Tagged with postgres, mongodb, json, document.
In this series, I present various access patterns for a specific document model. These patterns are... Tagged with mongodb, document, database, index.
29.05.2025
In the previous post, I've created the following index to quickly find the last videos in one... Tagged with mongodb, database, index, performance.
I won't create any indexes for this post yet, but I can still filter efficiently to run a query in... Tagged with mongodb, database, index, performance.
On reddit, a PostgreSQL user was trying to use the SQL database as a document database, with all data... Tagged with postgres, mongodb, json, document.
When creating an index, you don't need the full details of the queries it will serve, but the... Tagged with mongodb, database, index, performance.
In the first post of this series, I've imported a sample dataset, and I'll show how adding a few... Tagged with mongodb, database, index, performance.
Here is an example where using PostgreSQL as a document database will quickly fail: indexing. Either... Tagged with mongodb, postgres, database, index.
In the previous post, I used the following index on the daily views data, which is an array of... Tagged with mongodb, document, database, index.
In the previous post, we discussed how MongoDB indexes retrieve documents ordered by a specific... Tagged with mongodb, document, database, index.
When designing a schema for MongoDB, itβs crucial to understand your domain access patterns. The... Tagged with mongodb, database, index, performance.
28.05.2025
In this series, I tested multiple MongoDB emulations on top of SQL databases, and all failed to be... Tagged with mongodb, database, index, firestore.
27.05.2025
26.05.2025
25.05.2025
24.05.2025
23.05.2025
When designing a schema for MongoDB, itβs crucial to understand your access patterns. The document... Tagged with mongodb, database, index, performance.
07.05.2025
MongoDB is used for its strength in managing online transaction processing (OLTP) with a document... Tagged with mongodb, htap, olap, database.
06.05.2025
In previous posts, I discussed the limitations of MongoDB emulations on databases like Oracle and... Tagged with mongodb, aws, documentdb, index.
05.05.2025
My next post will be about Amazon DocumentDB and how it compares to MongoDB in terms of indexing a... Tagged with documentdb, aws, azure, mongodb.
02.05.2025
Storing documents in PostgreSQL does not transform it to a document database. Embedded documents in... Tagged with mongodb, postgres, document, database.
01.05.2025
When working with document-based data structures, the fields at the root can be indexed using simple... Tagged with postgres, json, sql, mongodb.
30.04.2025
Claims such as "Joins are slow" or "Joins don't scale" often prompt me to showcase how efficiently... Tagged with mongodb, postgres, sql, database.
Storing JSON documents in a SQL database does not make it a document database. The strength of any... Tagged with mongodb, document, database, index.
Export From SQL to CSV Import to MongoDB Indexing the Star Schema Querying the Star Schema - Star... Tagged with mongodb, search, index, analytics.
In relational SQL databases, foreign keys are essential for guaranteeing referential integrity. There... Tagged with mongodb, sql, database, postgres.