This documentation is sourced from a third-party project and is not maintained by pgEdge.
Monitoring
Use existing tools like pg_stat_statements or PgHero to monitor performance.
Monitor recall by comparing results from approximate search with exact search.
BEGIN;
SET LOCAL enable_indexscan = off; -- use exact search
SELECT ...
COMMIT;