I seem to be having an issue with MySQL 3.23.47. I have a table, that stores a lot of BLOB data (images), and now that the table is getting larger, because of the graphics being stored, when I use a LIMIT in my query, it gets slow. If I SELECT one record, everything is fast, but if I issue sometime like this (to get the last 30 records added):
select * from images limit 1081,30
The query can range from 8-15 seconds.
The current row size is: 100MB, and will continue to grow t get quite large over time. Currently there is 1111 records in the table.
TIA-
Bruce