I am using a perl script that upon receiving parameters, it check one value on a database and then executes other actions accordingly. Since traffic is increasing there are a lot of mysql reads/writes being executed and might be affecting performance.
Since the data stored in mysql is not really complicated, I am wondering if it is better to store an array in memory which can be then read/modified by other perl instances as they ran.
Is that possible?