FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
How We Query 16.8M SIRENE Establishments in 66ms
How-ToSystems

How We Query 16.8M SIRENE Establishments in 66ms

via Dev.tobennaceur walid4h ago

The French SIRENE database contains information about every registered business in France — over 30 million establishments. We imported 16.8 million active ones into GEOREFER and needed to make them searchable by name in under 100ms. Here's how we did it with PostgreSQL 16 and pg_trgm . The Challenge Our establishment table has 16.8 million rows. Users need to search by: SIREN (9 digits) — exact match, trivial with a B-tree index SIRET (14 digits) — exact match, same Company name — fuzzy match, this is where it gets interesting The name search needs to handle: Partial matches: "Total" should find "TotalEnergies SE" Typos: "Miclein" should find "Michelin" Accent insensitivity: "Societe Generale" should match "Societe Generale" The Naive Approach: ILIKE First attempt: SELECT * FROM georefer . establishment WHERE company_name ILIKE '%total%' LIMIT 25 ; EXPLAIN ANALYZE result: Seq Scan on establishment Filter: (company_name ~~* '%total%') Rows Removed by Filter: 16799975 Planning Time: 0.1

Continue reading on Dev.to

Opens in a new tab

Read Full Article
0 views

Related Articles

Vizio accounts are becoming Walmart accounts
How-To

Vizio accounts are becoming Walmart accounts

The Verge • 1h ago

How-To

Day 26: The Illusion of Progress in Tech Learning

Medium Programming • 2h ago

Killer Prompt for Learning Any Concept from Zero to Hero!
How-To

Killer Prompt for Learning Any Concept from Zero to Hero!

Medium Programming • 2h ago

Struggling to Make Money Online in 2026? Here’s the REAL Problem…
How-To

Struggling to Make Money Online in 2026? Here’s the REAL Problem…

Medium Programming • 3h ago

Top 10 Programming Languages to Learn in 2026
How-To

Top 10 Programming Languages to Learn in 2026

Medium Programming • 3h ago

Discover More Articles