I do have a Mysql database table which is always reading and inserting at a time. so do I need to use INSERT DELAYED option to optimize the process?? reading is primary concern and insert is secondary..
I do have a Mysql database table which is always reading and inserting at
Share
Yes if reading is the primary concern then you should use
INSERT DELAYED.This will also make
INSERTs faster if there are a lot of separateINSERTs being made. This is because they are bundled together and written in one block.MySQL Reference Manual