I currently have a table in my mySQL database that continually receives data (accumulates up to 16k~ rows for less than 20hours)
Data is saved through ajax, on user mouse action.
The table is flat with 4 fields:
- int(10
- varchar(255)
- text
- date (timestamp)
I use php. How will this table affect overall site speed and performance? Thanks!