I'm building a feed aggregator. I have a lot of blog addresses and I want to save all the posts in a database. I'm using Simplepie to get feeds and then with php I'm inserting them into a database. Simplepie's API is very large, and I don't know which parts of the post I should save. So far I'm saving:
- ID
- Title
- Date
- Permalink
- Author
- Description
- Content
I want to know what other things I should save in the database. I don't know the whole API and it's pretty long.