Re: Distributed Search Components

2010-06-21 Thread MitchK
Hoss, > I honestly don't know what you mean by "those implementations" and "both > implementations" ... impls of what? > I mean the implementation of the distributed search in Solr. Those classes that are responsible for the search-logic. I mean, from somewhere the searcher (or whatever) mus

Re: Distributed Search Components

2010-06-11 Thread MitchK
Sorry for my late response. Thank you both for your answers. Chris, can you tell me where exactly I can find those implementations you are talking about? I can't find them, probably I am searching in the wrong code-files. I would really like to compare the sourcecodes of both implementations.

Re: Sorting on Facet Fields

2010-05-24 Thread MitchK
I talked to some people that need another sorting-option as well. At the moment, it is not possible to sort custom out-of-the-box. I don't need such a feature right now, but it would be a nice-to-have. If there is some more interest on the mailing list, I will register at the JIRA and open an is

Re: Distributed Search Components

2010-05-22 Thread MitchK
Just wanted to push the topic again, because I think it would make a lot of things easier, i.e. faster development of new components. Any oppinions??? - Mitch MitchK wrote: > > Hello community, > > has anyone considered the ParallelMultiSearcher for distributed search? > Pe

Re: Indexing and searching on HUGE content

2010-05-21 Thread MitchK
Hi Akash, why does copyField don't work for you? Can't you do a copyField into a field like "content_all"? To do so content_all must be a multiValued field. I think this should work for you. If not, can you provide us some error logs??? Kind regards - Mitch -- View this message in context: ht

Distributed Search Components

2010-05-20 Thread MitchK
Hello community, has anyone considered the ParallelMultiSearcher for distributed search? Perhaps it is not neccessary to implement code that takes care of the distributed part of a search, if we make a Solr-server thinking, that he searches only one index. A more complex distributed search could

Re: Merging Solr Cloud into trunk

2010-05-17 Thread MitchK
No public ressources, papers or something else??? -- View this message in context: http://lucene.472066.n3.nabble.com/Merging-Solr-Cloud-into-trunk-tp706528p824612.html Sent from the Solr - Dev mailing list archive at Nabble.com. -

Re: Merging Solr Cloud into trunk

2010-05-15 Thread MitchK
Unfortunately I can't try out the code of the newest cloud-code, because I am only using a local machine. However, I am really interested in the concepts behind the distributed search-concept of Solr. At https://issues.apache.org/jira/browse/SOLR-1873 I can't find much about that and even the wi

Re: RequestHandler / function Query with Cache-implementation

2010-04-30 Thread MitchK
Having a look at the source-codes and the API-documentation, I want to describe how I would try to implement my function query's prototype. Firstly I subclass valueSource. The constructor needs two arguments: ValueSource fileFloatSource, ValueSource myField I declare the following variables: Doc

Re: RequestHandler / function Query with Cache-implementation

2010-04-29 Thread MitchK
> ExternalFileField reads the data from the file once (per searcher) and > then stores it in an internal data structure just like hte FieldCache - so > it should be just as fast at query time as anything you might write using > a SolrCache. > And if Solr instantiates a new searcher, the Fie

Re: RequestHandler / function Query with Cache-implementation

2010-04-27 Thread MitchK
Hi Chris, Chris Hostetter-3 wrote: > > I'm not entirely sure i undestand what you're asking, but have you looked > at ExternalFileField ? ... what you are describing sounds an awful lot > like using it in a FunctionQuery > Yes, it's really a lot. I am not sure whether an ExternalFileField-so

RequestHandler / function Query with Cache-implementation

2010-04-26 Thread MitchK
Hello community, during several thoughts about how to make scoring in Solr better, a lot of times I wished that I can use precomputed data to influence score. However, this data could change whenever there occurs a commit. That's why I can't work with preprocessing while indexing the documents. I