みなさんこんにちは tyamahoriです。
仕事でちょっとしたシステムをLaravelで作成する機会がありました。その中で注意しなければいけない点があったのでここに書き残したいともいます。
whereHasメソッドは重くて辛いょ。。
やっまりwhereHasメソッドを使うと重くて辛いんですよ。。ネットでググるとこんな感じで記事が出てきます
代替案ありました!
GitHubのissueを読み込んでみるとなんと解決策があるではないですか!!!
WhereHas query is too slow のコメント
Laravel is creating a temporary column on literally every row in the database, in which it fills with true or false. If any indexes can be used, they are probably used after this. Any query that uses whereHas is probably going to be a full table scan.
Here is a similar query, except it does not induce full table scans.
Profile::whereIn('profiles.id', function($query) use ($mac_address) { $query->from('devices') ->select('devices.profile_id') ->where('devices.mac_address', $mac_address); })
なんとwhereIn
を使えばいいんですね。勉強になりました。issueに乗っているコードを必要に応じて読み替える必要はあります。実際、案件にてwhereHasとwhereInを比較してみたら、驚くくらいに挙動が軽くなりました!。whereHasを使っている方はぜひともwhereInを使ってみてくださいね!!