Mark Chavez
eat. sleep. repeat. 👾 coding, ⌨️ keyboarding, 🚴🏼 cycling.
Uniq vs Distinct [ActiveRecord] 07/11/2023
💡

The method .uniq returns an array (type Array)

💡

The method .distinct returns an array (of type ActiveRecord::Relation)

TIP: We should be aware of this as it may affect the performance of our app.