is it a good practice to hold objects with strings the size of 200 chars and more in my SQL db? if not, what should be my limit? It's important for me because in my case I could have a lot of these entities, perhaps over few millions.
my hunch says I should keep the objects data in db and hold just the string fields in outer files. the reasons I think about are mostly for better cache management and to keep the DB file slim. but I couldn't find any information to confirm or contradict my assumption and I don't want to overkill it.
thanks!