3 # DO NOT EDIT - This file is being maintained by Chef
6 # Vaccum all tables with indices on integer arrays.
7 # Agressive vacuuming seems to help against index bloat.
8 psql -q -d <%= @db %> -c 'VACUUM ANALYSE search_name'
10 for i in `seq 0 250`; do
11 psql -q -d <%= @db %> -c "VACUUM ANALYSE search_name_${i}"