Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!
1. What Is an Index? An index in a database is like the index in a book — it helps you...
In September 2025, AWS announced it will contribute to the open-source DocumentDB extension for...
In Java's HashMap, a null key is stored in bucket 0 because the hashCode() method cannot be invoked...
When creating an index, you don't need the full details of the queries it will serve, but the...
I concluded the previous post with a question. We have explored how queries with range and equality...
In a previous blog post, I explained how MongoDB TTL indexes work and their optimization to avoid...
When designing a schema for MongoDB, it’s crucial to understand your domain access patterns. The...
Storing JSON documents in a SQL database does not make it a document database. The strength of any...
In the previous post, I used the following index on the daily views data, which is an array of...
MongoDB is the standard API for document databases, and some cloud providers have created services...
Without TTL (manual delete job) With TTL (expireAfterSeconds index) Comparison (server metrics and...
I won't create any indexes for this post yet, but I can still filter efficiently to run a query in...
TL;DR: To make developers' lives easier, MongoDB has documented a simple rule for creating an...
In this series, I present various access patterns for a specific document model. These patterns are...
In the first post of this series, I've imported a sample dataset, and I'll show how adding a few...
Export From SQL to CSV Import to MongoDB Indexing the Star Schema Querying the Star Schema - Star...
Here is an example where using PostgreSQL as a document database will quickly fail: indexing. Either...
In this series, I tested multiple MongoDB emulations on top of SQL databases, and all failed to be...
Stock Market New York Stock Exchange (NYSE): The largest stock exchange in the...
In previous posts, I discussed the limitations of MongoDB emulations on databases like Oracle and...
This article is part of a series. Please see the complete series above. Here's our playground of the...
Using an index to help improve query performance is common practice. An index is a structure...
In the previous post, I've created the following index to quickly find the last videos in one...
B-Tree for Equality, Sort, Range Franck Pachot ・ May 23 ...
Indexes are fundamental for MySQL optimization, making data retrieval faster and more efficient....
MongoDB sits at the crossroads between SQL, where developers can write queries on a logical model...
During a technical interview, the situation was something like this: “Your manager tells you: the...
Introduction A while back, Hetti wrote an article titled Indexing Partitioned Table...
In the previous post, we discussed how MongoDB indexes retrieve documents ordered by a specific...
Until recently, Oracle Database offered very limited options for creating inverted indexes, primarily...