Re: Multi-valued polyfields - Do they exist in the wild ?

2012-03-21 Thread Mikhail Khludnev
Hello, The most promising approach for doing this is BlockJoinQuery. Here is the great intro http://blog.mikemccandless.com/2012/01/searching-relational-content-with.html. This query and lowlevel indexing support is implemented in Lucene. Some work is in progress for Solr https://issues.apache.org

Re: Multi-valued polyfields - Do they exist in the wild ?

2012-03-21 Thread Lance Norskog
(Currency has one value and a dynamic table of currency->conversion. The field type does the conversion calculations on the fly.) To pick particular values, you have to do your own search inside the returned array. On Wed, Mar 21, 2012 at 1:25 PM, wrote: > Hi Yonik: >    Thanks, I am looking a

Re: Multi-valued polyfields - Do they exist in the wild ?

2012-03-21 Thread ramdev.wudali
Hi Yonik: Thanks, I am looking a field (example: Currency) which can have multiple values within a document (I.e. Different currencies and corresponding conversion rates). I would like to store that information as part of one multivalued field. Even better would be a solution that upon queried

Re: Multi-valued polyfields - Do they exist in the wild ?

2012-03-20 Thread Yonik Seeley
On Tue, Mar 20, 2012 at 2:17 PM, wrote: > Hi: >   We have been keen on using polyfields for a while. But we have been > restricted from using it because they do not seem to support Multi-values > (yet). Poly-fields should support multi-values, it's more what uses them may not. For example LatL

Multi-valued polyfields - Do they exist in the wild ?

2012-03-20 Thread ramdev.wudali
Hi: We have been keen on using polyfields for a while. But we have been restricted from using it because they do not seem to support Multi-values (yet). I am wondering if there are any Custom implementations or is there any ETA on the Solr releases to include Multivalued PolyFields . Thank