Hi guys, I am building a scraper and its going to add roughly about 20K of rows everyday on a table called 'tbl_posts'. What database engine should I choose for this specific table? Thanks Amit
If you are going to simply insert rows in table, you can go for MyISAM engine. If you need constant select / insert / update / delete on a table, then you need InnoDB.