I have many pages of content (several hundred) that will have lists of items on each page.
I want to be able to compare items on lists from different pages and show matching items or similar items.
I am concerned about MySQL performance as more and more information is added to the database.
Would it be best to enter each list item individually in a MySQL table as its own row (many rows per page), or should I enter entire lists as a serialized array (1 row per page)? What is the best way to store these lists?
Thanks in advance for any help!!






Bookmarks