먼저 성과부터 보여드립니다. 성과 개선 전 select * from user_table where nickname ilike '코%' order by id desc limit 100 postgresql 의 explain analyze 해본 결과 cost : 114404.84 Execution Time : 2571.743ms 정직한 Parellel Seq Scan 개선 후 select * from user_table where nickname ilike '코%' order by id desc limit 100 postgresql 의 explain analyze 해본 결과 cost : 743 Execution Time : 0.8ms 문제 문제 상황 유저간의 닉네임을 검색해야 했는데, 이 검색 속도가 느렸음 ..