RE: A schema inside a Solr Schema (Schema in a can)

2010-12-20 Thread Dyer, James
Subject: RE: A schema inside a Solr Schema (Schema in a can) To: solr-user@lucene.apache.org Date: Friday, December 17, 2010, 12:47 PM The problem with this approach is that Lucene doesn't support wildcards in phrases.  With https://issues.apache.org/jira/browse/SOLR-1604 you can do that.

Re: A schema inside a Solr Schema (Schema in a can)

2010-12-20 Thread Dennis Gearon
, 2010 7:16:43 AM Subject: RE: A schema inside a Solr Schema (Schema in a can) Dennis, If you need to search a key/value pair, you'll have to put them both in the same field, somehow. One way is to re-index them using the key in the fieldname. For instance, suppose you have: contributor: dyer

Re: A schema inside a Solr Schema (Schema in a can)

2010-12-20 Thread Dennis Gearon
Message From: Dennis Gearon gear...@sbcglobal.net To: solr-user@lucene.apache.org Sent: Mon, December 20, 2010 10:19:53 AM Subject: Re: A schema inside a Solr Schema (Schema in a can) Thanks James. So being accurate with fields with fields(mulitvalues) is probably not possible using all

RE: A schema inside a Solr Schema (Schema in a can)

2010-12-17 Thread Dyer, James
] Sent: Friday, December 17, 2010 12:43 AM To: solr-user@lucene.apache.org Subject: A schema inside a Solr Schema (Schema in a can) Is it possible to put name value pairs of any type in a native Solr Index field type? Like JSON/XML/YML? The reason that I ask, since you asked, is I want my main

RE: A schema inside a Solr Schema (Schema in a can)

2010-12-17 Thread Dyer, James
(615) 213-4311 -Original Message- From: Dyer, James Sent: Friday, December 17, 2010 10:59 AM To: solr-user@lucene.apache.org Subject: RE: A schema inside a Solr Schema (Schema in a can) Dennis, I may be misunderstanding your question, but think I've just worked through something similar

RE: A schema inside a Solr Schema (Schema in a can)

2010-12-17 Thread Dennis Gearon
You've given me some tings to think about, James, thanks. Dennis Gearon -- On Fri, 12/17/10, Dyer, James james.d...@ingrambook.com wrote: From: Dyer, James james.d...@ingrambook.com Subject: RE: A schema inside a Solr Schema (Schema in a can) To: solr-user@lucene.apache.org solr-user

RE: A schema inside a Solr Schema (Schema in a can)

2010-12-17 Thread Dennis Gearon
: A schema inside a Solr Schema (Schema in a can) To: solr-user@lucene.apache.org solr-user@lucene.apache.org Date: Friday, December 17, 2010, 9:43 AM There's also one gotcha we've experienced when searching acrosse multi-valued fields:  SOLR will match across field occurences.  In the example

RE: A schema inside a Solr Schema (Schema in a can)

2010-12-17 Thread Ahmet Arslan
The problem with this approach is that Lucene doesn't support wildcards in phrases.  With https://issues.apache.org/jira/browse/SOLR-1604 you can do that.

RE: A schema inside a Solr Schema (Schema in a can)

2010-12-17 Thread Dennis Gearon
: RE: A schema inside a Solr Schema (Schema in a can) To: solr-user@lucene.apache.org Date: Friday, December 17, 2010, 12:47 PM The problem with this approach is that Lucene doesn't support wildcards in phrases.  With https://issues.apache.org/jira/browse/SOLR-1604 you can do that.

A schema inside a Solr Schema (Schema in a can)

2010-12-16 Thread Dennis Gearon
Is it possible to put name value pairs of any type in a native Solr Index field type? Like JSON/XML/YML? The reason that I ask, since you asked, is I want my main index schema to be a base object, and another multivalue column to be the attributes of base object inherited descendants. Is