- n+1 queries (try :includes or join)
- Complex joins (is there another way to find the data?)
- Missing indexes
- Useless indexes
- Schema (prossibly denormalize)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // OBJECT PROGRAMMING | |
| avi = { | |
| walk: function() { console.log(this.name + ' is walking') }, | |
| name: 'Avi' | |
| } | |
| avi.walk() | |
| avi.lastName = 'Kaufman' |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.