Remove campaigns you are not running anymore, helped me to speed up quite a lot. Especially after having several hundreds of thousands of clicks in those old camps.
Your bigger problem is your redirect speeds are probably taking a hit... clean out your database and you'll probably see conversions increase.
I haven't found a good solution to this though other than manually exporting data to a csv daily then using the delete clicks button in the admin section. Been meaning to setup a script to automate this. I also have a daily cron to fix and optimize the tables. Not sure how much that helps, but was recommended at some point.
This is a huge PIA if you need to go back and analyze the data across all your csv files.
$subid = $_COOKIE['tracking202subid'];
if ($subid != "") {
mysql_query("UPDATE 202_clicks_record SET click_out = '1' WHERE click_id = '$subid'");
}
Your bigger problem is your redirect speeds are probably taking a hit... clean out your database and you'll probably see conversions increase.
I haven't found a good solution to this though other than manually exporting data to a csv daily then using the delete clicks button in the admin section. Been meaning to setup a script to automate this. I also have a daily cron to fix and optimize the tables. Not sure how much that helps, but was recommended at some point.
This is a huge PIA if you need to go back and analyze the data across all your csv files.
Do you do it daily no matter what or do you wait to hit a certain DB size before exporting it?