I am setting up a site that has products and images of those products. Each image is stored as an entry in a table in the database. Each product can have any amount of images, but it is an average of fifteen images. With 1500 products (the prospected current amount) with an average of 15 images, I have already hit 22,500 entries in one table. When is a table considered 'full'? How many entries should I allow in my table before the user will notice slowdown?
EDIT: I should mention that I do store the images on the filesystem, the tables just store a path and filename with some other relevant data.