I have a specific to JSP/JSF question related to storing articles and I need your thoughts on this.
Please review the following options and let me know which is a better choice in terms of performance:
Store all articles in the database.
Store as html files and have URLs in the database. The reason why I am asking this for JSP is that, in this case, I can just store a map with all information (including titles, dates and html file paths) about articles in the Application Scope and just INCLUDE the html in my JSP pages (no need to read html files in the code). Also, that map in Application Scope can be updated only when article(s) are updated, so, generally, there will be no need to call database to show articles to users. The only cons I can think of, are
a. With an increase in articles there will be an increase of memory taken by the map in the application scope. Will this become a huge memory problem in the future?
b. I need to integrate text search in filesystem using some searching tools.
Main question: What pros and cons you can think of for 2nd option? Is there a big difference in performance between these two options?
Thanks in advance!