Blog
Care, for your database

EXPLAIN Quirks: PostgreSQL's Missing Index Usage Details
15 min read
PostgreSQL's EXPLAIN command contains detailed information about many aspect of a query's execution plan. But one particular set of information is curiously absent.

IndeX-Ray™: Imaging Technology for Database Indexes
8 min read
Today we introduce IndeX-Ray™ which is a simple, intuitive, and powerful way to visualize indexes inside of databases!

Covered Queries
7 min read
Indexes tell databases where to find information that it is looking for. Under the right circumstances, the index can save the database even more time by providing the requested information directly.

What is an Index?
7 min read
Indexes are the core component that drive efficient database performance. How do they do it?

Don’t (Always) Use The Index
8 min read
Indexes are incredible, but not magical. There are times when they should not be used. Forcing a database to use one when it doesn’t naturally want to could cause performance to get worse.