@theo I’ve seen some speculation that hardware shortages could become widespread. Would be interesting to read grounded predictions on which categories might be affected and when.
@igor_alexandrov That's an interesting approach... I do the same with has_one associations and preloading.
When included to a model, it creates "[association]_count" helper that can be eagerly preloaded, e.g.
```
Post.preload(:unread_comments_count).find(1).unread_comments_count
```