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
    
  
  
    
  | /* | |
| Demonstrates the performance difference of using normalized DB tables vs JSON/CSV in a single column to store data | |
| Assumes you are using MySQL 8.x+ locally | |
| https://dev.mysql.com/blog-archive/mysql-explain-analyze/ | |
| */ | |
| CREATE TABLE users_test_not_normalized | |
| ( | |
| id int PRIMARY KEY, | |
| name varchar(100), | 
  
    
      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
    
  
  
    
  | package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| "time" | |
| ) | |
| const numberOfRequestsPerURL int = 10 |