I would like to store 1000+ records in a table. It has got:
ID : auto increment INT title : varchar (20) author_ID : INT timestamp : unsigned INT text : TEXT (this is the problem) (+tags and categories)
The "text" field has to store about 30-50 KByte texts. But I don't want to search in this field, only in the other ones. Is it a good idea, to store these big texts in .TXT files? Will the database queries be faster?