107 articles

📰 Dev.to · Franck Pachot

Articles from Dev.to · Franck Pachot · 107 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (11233) ArXiv cs.AIDev.to · FORUM WEBDev.to AIForbes InnovationOpenAI NewsHugging Face Blog
Comparing Execution Plans: MongoDB vs. Compatible APIs
Dev.to · Franck Pachot 1y ago
Comparing Execution Plans: MongoDB vs. Compatible APIs
MongoDB is the standard API for document databases, and some cloud providers have created services...
Skip Scan in MongoDB with Range, Equality (RE) index as an alternative to Equality, Sort, Range (ESR)
Dev.to · Franck Pachot 1y ago
Skip Scan in MongoDB with Range, Equality (RE) index as an alternative to Equality, Sort, Range (ESR)
To achieve the ideal index for each query while adhering to the Equality, Sort, and Range (ESR) rule,...
MongoDB Equality, Sort, Range (ESR) without Equality (SR): add an unbounded range predicate on the indexed sort field
Dev.to · Franck Pachot 1y ago
MongoDB Equality, Sort, Range (ESR) without Equality (SR): add an unbounded range predicate on the indexed sort field
In a previous post. I applied the ESR rule to multiple databases. I used a simplified example with no...
Document Expiration with TTL Indexes in MongoDB
Dev.to · Franck Pachot 1y ago
Document Expiration with TTL Indexes in MongoDB
Without TTL (manual delete job) With TTL (expireAfterSeconds index) Comparison (server metrics and...
ESR (Equality, Sort, Range) rule applied to YugabyteDB and PostgreSQL indexes
Dev.to · Franck Pachot 1y ago
ESR (Equality, Sort, Range) rule applied to YugabyteDB and PostgreSQL indexes
TL;DR: To make developers' lives easier, MongoDB has documented a simple rule for creating an...
Indexing for NOT EQUAL (<>,!=) in YugabyteDB, PostgreSQL, Oracle Database, SQL Server, and MongoDB
Dev.to · Franck Pachot 1y ago
Indexing for NOT EQUAL (<>,!=) in YugabyteDB, PostgreSQL, Oracle Database, SQL Server, and MongoDB
Indexing for Not-Equal in YugabyteDB Indexing for Not-Equal in PostgreSQL Indexing for Not-Equal in...
Unique Index on NULL Values in SQL & NoSQL
Dev.to · Franck Pachot 1y ago
Unique Index on NULL Values in SQL & NoSQL
NoSQL behavior: MongoDB SQL behavior: PostgreSQL and YugabyteDB A mix of both: Oracle Database You...