-
Notifications
You must be signed in to change notification settings - Fork 3
階差ロード機能の説明
baban edited this page May 25, 2016
·
7 revisions
階差ロード機能は複数のファイルを同時にロードするときに 一部のファイルのみ、別のディレクトリに格納するときに、力を発揮します
rake db:flextures:load TABLE=users,items DIR=foo/bar OPTION=stair
ディレクトリは、深いものから順に検索する、なので"foo"ディレクトリ以下より、"foo/bar"以下のファイルを優先して探します。
また、拡張子の優先順位は"erb.csv"、"csv"、"erb.yml"、"yml"となっています。
なので、usersテーブルの場合次の順番で検索をかけられます。
- spec/fixtures/foo/bar/users.erb.csv
- spec/fixtures/foo/bar/users.csv
- spec/fixtures/foo/bar/users.erb.yml
- spec/fixtures/foo/bar/users.yml
- spec/fixtures/foo/users.erb.csv
- spec/fixtures/foo/users.csv
- spec/fixtures/foo/users.erb.yml
- spec/fixtures/foo/users.yml
- spec/fixtures/users.erb.csv
- spec/fixtures/users.csv
- spec/fixtures/users.erb.yml
- spec/fixtures/users.yml
そのため、用途ごとにディレクトリを作って、usersテーブルのデータだけを切り分けたいときなどに 例外となっているファイルと通常のファイルを一括して読みだす事ができます