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
| { | |
| "editor.lightbulb.enabled": true, | |
| "editor.parameterHints.enabled": true, | |
| "editor.renderWhitespace": "none", | |
| "editor.snippetSuggestions": "inline", | |
| "editor.cursorBlinking": "solid", | |
| "editor.tabSize": 2, | |
| "editor.lineNumbers": "relative", | |
| "editor.wordWrap": "on", | |
| "emmet.triggerExpansionOnTab": true, |
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
| { | |
| "editor.lightbulb.enabled": false, | |
| "editor.parameterHints.enabled": true, | |
| "editor.renderWhitespace": "all", | |
| "editor.snippetSuggestions": "none", | |
| "editor.tabSize": 2, | |
| "editor.wordWrap": "on", | |
| "emmet.triggerExpansionOnTab": true, | |
| "files.trimTrailingWhitespace": true, | |
| "javascript.suggest.enabled": true, |
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
| POSTGRES | |
| API | |
| CREATE | |
| Query: insert into houses (imgurl, location, type, title, cost, stars, reviewcount) | |
| values ('sdcimg-204.jpg', 'Brooklyn', 'apartment', 'Williamsburg Condo', 300, 2, 200); | |
| Time: 10.658 ms | |
| Time: 7.829 ms | |
| < -- after tuning, index column -- > | |
| Time: 31.365 ms |
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
| POSTGRES | |
| CREATE | |
| Query: insert into houses (imgurl, location, type, title, cost, stars, reviewcount) values ('sdcimg-204.jpg', 'Brooklyn', 'apartment', 'Williamsburg Condo', 300, 2, 200); | |
| Time: 10.658 ms | |
| Time: 7.829 ms | |
| < -- after tuning, index column -- > | |
| Time: 31.365 ms | |
| Time: 8.616 ms | |
| < -- set table to unlogged -- > |
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
| [ | |
| { | |
| "genre": [ | |
| "Animation", | |
| "Thriller" | |
| ], | |
| "reviewRating": [ | |
| 2.8 | |
| ], | |
| "stars": [ |