On Mon, Apr 20, 2009 at 11:46 AM, HPN 75 <haroldo.s...@hotmail.com> wrote: > I have some years of experience with lucene and I am knowing solr now. > I see that many processes are encapsulated in the API. My doubts is on the > level of customization of solr. > Is it possible to create my units of searches in solr having: > 1- Send of seed for ramdomize for my sort criteria
What's already in Solr may work for you out-of-the-box... see the random* field in the example schema and the comments with it's associated type. > 2- Implement my proper algorithm of suggest. I think that to implement my > proper requestHandler and searchComponent. If you want suggest only, implement your own request handler. If you want your suggest output to come back with standard search results, implement it as a search component. -Yonik