At the moment, MySQL is used to store several look-up tables.
Since this data rarely changes (it is typically updated quarterly to yearly), there's no reason for these look-up tables to be in MySQL. It needlessly complicates the server stack.
The lookup tables could be stored as JSON that are loaded by the application, or even as PHP arrays.
At the moment, MySQL is used to store several look-up tables.
Since this data rarely changes (it is typically updated quarterly to yearly), there's no reason for these look-up tables to be in MySQL. It needlessly complicates the server stack.
The lookup tables could be stored as JSON that are loaded by the application, or even as PHP arrays.