The article discusses the performance of PostgreSQL's full-text search (FTS) feature, debunking the myth that it is slow. It highlights two major mistakes that can lead to poor performance: calculating tsvector on-the-fly and ignoring GIN index fastupdate. By applying standard optimizations, the article demonstrates a 50x speed improvement for standard PostgreSQL FTS. The article also introduces VectorChord-BM25, a PostgreSQL extension for fast, relevance-based ranking.