This is a quick question.
I expect a table to have thousands of entries. The table only has foreign keys and dates in it, no CHAR or VARCHAR fields.
However, I need a field called Settings to store a lot of encoded data, but i DON'T need to normally refer to this data in a query or join or etc., i.e. it's only used in post-process.
So, would it be recommended, using mysql 4.x or 5.x, to put the LONGTEXT field in another table and join the rows one-to-one by an ID? I'm thinking the main table may query faster with no blob-like fields in them. Again, this table could have 10,000+ records in it at one point.
Samuel