I am planning to store sitemaps with related data per url
wanted to know which is better :
creating new table per user / website
for each website, save all urls (with its data or in separate column) as an array in 1 row
save each url as separate row with the main website as identifier
Explained:
each user will have his own table, with all urls in their own rows
table will have columns: id, user, website, urls
for all urls of same site, it will save them as an array next to that particular website and user
- same columns, but each sitemap will create many rows with 1 url per row