| clear query|facets|time |
Search criteria: schema.xml.
Results from 1 to 10 from
735 (3.323s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: XML Schema for schema.xml - Solr - [mail # user]
|
|
...On 3/3/06, Grant Ingersoll wrote: The schema should already parse and accept the following attributes on either a fieldtype or field definition: "termVectors", "termPositions", "term...
|
|
...Offsets" (these names are in FieldProperties). SchemaField represents the definitions in the schema. FieldType represents the definitions in the schema. DocumentBuilder is used to build Lucene...
|
[+ show more]
[- hide]
| ... Documents, using SchemaField.createField() to create the Field, which delegates to FieldType.createField(). FieldType: public Field createField(SchemaField field, String externalVal, float boost... |
| ....setOmitNorms(field.omitNorms()); f.setBoost(boost); return f; } SchemaField already has public boolean storeTermVector() { return (properties & STORE_TERMVECTORS)!=0; } public boolean storeTermPositions() { return... |
| ... in FieldType.createField(). The harder part is figuring out what to do with TermVectors once they are stored however... Right now, they won't be returned in the XML response, you one would need... |
|
|
Author: Yonik Seeley,
2006-03-04, 15:15
|
|
|
Re: XML Schema for schema.xml - Solr - [mail # user]
|
|
... of it looks to Solr's schema! So since it seems like your stuff has it's own schema too, do you see any features needed for Solr's schema? -Yonik =======From Gran's Presentation======= Declare...
|
|
|
Author: Yonik Seeley,
2006-03-03, 18:07
|
|
|
Re: XML Schema for schema.xml - Solr - [mail # user]
|
|
...On 2/26/06, Grant Ingersoll wrote: There is currently no schema. Everything useful should be in the example schema though. For fields: section indexed: true if this field...
|
|
|
Author: Yonik Seeley,
2006-02-26, 16:30
|
|
|
Re: schema.xml compatibility - Solr - [mail # user]
|
|
...On Wed, Jul 9, 2008 at 7:13 PM, Teruhiko Kurosaka wrote: It shouldn't be a compatibility issue since both will be accepted. The xpath used to select fieldType nodes is "/schema...
|
|
.../types/fieldtype | /schema/types/fieldType" Hopefully soon... perhaps the end of the month. -Yonik ...
|
|
|
Author: Yonik Seeley,
2008-07-10, 00:53
|
|
|
Re: BOSTing FIELDS in SCHEMA.XML - Solr - [mail # user]
|
|
.... This would then allow you to specify (via defaults in solrconfig.xml, per-handler) what fields should be searched and the boost for each field. -Yonik http://www.lucidimagination.com ...
|
|
|
Author: Yonik Seeley,
2009-03-23, 20:59
|
|
|
Re: Which schema.xml to modify for a patch? - Solr - [mail # dev]
|
|
...On 12/22/06, Otis Gospodnetic wrote: The one in "example" is the recommended starting point for users, and we should try to keep that one useful, correct, and concise, out-of-the...
|
|
|
Author: Yonik Seeley,
2006-12-22, 18:35
|
|
|
making schema.xml nicer to read/use - Solr - [mail # dev]
|
|
...What do people thing of leaving off "Factory" from tokenizers and token filters in schema.xml. Let the user say what filter they want, not necessarily how to get it. So you would say...
|
|
|
Author: Yonik Seeley,
2006-08-22, 19:53
|
|
|
Re: Using sfloat for price field in example schema.xml - Solr - [mail # user]
|
|
...On Wed, Jul 1, 2009 at 3:20 PM, Chris Harris wrote: Decimals may not have exact representations in binary floating point numbers. For example, 0.1 can't be accurately represented...
|
|
|
Author: Yonik Seeley,
2009-07-01, 20:00
|
|
|
Re: Update schema.xml without restarting Solr? - Solr - [mail # user]
|
|
...On Wed, Mar 26, 2008 at 4:41 PM, Ryan McKinley wrote: Yep, that's my sense too. No magic solutions when it comes to scalability. -Yonik...
|
|
|
Author: Yonik Seeley,
2008-03-26, 21:16
|
|
|
Re: Logging a lack of uniqueKey field in schema.xml - Solr - [mail # dev]
|
|
... 'id' If the schema defines a uniqueKeyField, and that field doesn't exist, shouldn't we throw an exception rather than just logging it? It seems like a rather fatal error. Must have been...
|
|
|
Author: Yonik Seeley,
2006-06-08, 20:37
|
|
|
|