私はフィルターを持っています
#in cities.rb
filter :country #drop-down select list with more than 200 values
ほとんど静的なリストです。生産性を高めるためにキャッシュする必要があります
私はもう試した
filter :country, :collection=>proc{cache {options_from_collection_for_select(Country.all, :id, :name)}} #no luck
ありがとうございました