當我們檢查一個活動記錄結果是否爲空時,會有哪些方法會有更多的性能。帶有效記錄的結果檢查
pc_count = Property.select("id").where('property_category_id = ?', 5).limit(1)
if pc_count.blank?
#
end
if pc_count[0]
#
end
在兩種方式我都試過這種pc_count.blank?或pc_count [0],因爲我聽說空白將採取額外的查詢,但是當我試圖在控制檯我看不到任何額外調用