How should autocomplete work?

We were recently developing an application that has a fixed set of data. The data may change very little over time. And this application has one search box to search over all this data. The search page is quite like google page with one search box and search results showing on the page    So … Read more

Lucene using spring.

Today we are showing how to instantiate lucene using spring. We will be using annotations for instating the spring bean. Lets jump directly to the example class to see how it is done So the above class is a singleton spring bean. The annotation PostConstruct on the method init make sure that lucene IndexWriter is started on the startup. … Read more