Get rid of the logic that loads all of the stores from the CSV file into memory.
Why
Loading all stores into memory creates an unnecessary memory footprint that can be used for other things. And it is very clear that at this point we are getting all of our data from the database.
What
Get rid of the logic that loads all of the stores from the CSV file into memory.
Why
Loading all stores into memory creates an unnecessary memory footprint that can be used for other things. And it is very clear that at this point we are getting all of our data from the database.