I have a simple requirement where a user enters a bunch of words and the system scans over 3 million text files and finds files which has those keywords. What would be the most efficient and simple way to implement this without a complex searching / indexing algorithm ?
I thought of using Scanner
class for this but have no idea about performance over such large files. Performance isn't very high priority but it should be in a acceptable standard.