I'm trying to implement Search Engine. I have web application that displays list of articles in DataGrid. In DB I have table with article data (title, creation date, last update date, owner etc.) In UI I have search component (with date pickers, drop boxes etc.) i.e. I want to search all articles with owner = 'admin' and creation date >12/16/2010. How would you implement such search engine on back-end? By the way back-end written on java.
May be someone knows some articles or books?