Home | About | Sematext search-lucene.com search-hadoop.com
clear query|facets|time Search criteria: SchemaField.   Results from 41 to 50 from 399 (0.458s).
Loading phrases to help you
refine your search...
[SOLR-4215] Optimize facets when multi-valued field is really single valued - Solr - [issue]
...In lucene 4+, the Terms interface can quickly tell us if the index is actually single-valued.  We should use that for better facet performance with multi-valued fields (when...
http://issues.apache.org/jira/browse/SOLR-4215    Author: Ryan McKinley, 2012-12-29, 15:54
Re: Update schema.xml without restarting Solr? - Solr - [mail # user]
...  Perhaps consider using dynamic fields if you need new fields: http://wiki.apache.org/solr/SchemaXml#head-82dba16404c8e3318021320638b669b3a6d780d0  - - - -  Do you really need to change...
... the schema?  Your CMS will transform from  blog software to invoice tracking to forum without restarting?  With  clever use of dynamic fields this should be possible too.  Consider  changing...
[+ show more]
   Author: Ryan McKinley, 2008-03-25, 15:45
Re: Update schema.xml without restarting Solr? - Solr - [mail # user]
...[EMAIL PROTECTED] wrote:  In general, you need to be very careful when you change the schema  without reindexing.  Many changes will break all search, some may be  just fine.  for example...
   Author: Ryan McKinley, 2008-03-25, 16:57
Re: Update schema.xml without restarting Solr? - Solr - [mail # user]
...just intuition - haven't tried it, so i'd love to be proved wrong.  Instrumenting Objects and magically passing them around seems like it  would be slower then a tuned approach use...
   Author: Ryan McKinley, 2008-03-26, 20:41
Re: Update schema.xml without restarting Solr? - Solr - [mail # user]
...Jeryl Cook wrote:  This is noted in: https://issues.apache.org/jira/browse/SOLR-465  Out of cueriosity, any sense of performance with a terracotta index?  It  seems like ...
   Author: Ryan McKinley, 2008-03-26, 14:52
Re: Get Config / Schema, 1.3-dev Broken? - Solr - [mail # user]
...add:       to solr config, then check:    /admin/file?file=solrconfig.xml  This is using a requestHandler rather then a jsp file...  CHANGES.txt  exap...
   Author: Ryan McKinley, 2008-02-08, 19:24
Re: Luke request handler issue - Solr - [mail # dev]
...Yonik Seeley wrote:  Thats how it currently works:     NamedList list = new NamedList();    for (TermInfo i : aslist) {      String txt = i.term.text();      SchemaField ft = schema.getField...
...OrNull( i.term.field() );      if( ft != null ) {        txt = ft.getType().indexedToReadable( txt );      }      list.add( txt, i.docFreq );    }    return list;  When you inspect a single document...
   Author: Ryan McKinley, 2007-05-23, 17:02
NRT persistant flags? - Solr - [mail # user]
...I'm looking for a way to quickly flag/unflag documents.  This could be one at a time or by query (even *:*)  I have hacked together something based on ExternalFileField that is essentially...
... a FST holding all the ids (solr not lucene).  Like the FieldCache, it holds a WeakHashMap where the OpenBitSet is loaded by iterating the FST on the reader (just like ExternalFileField...
[+ show more]
   Author: Ryan McKinley, 2013-03-14, 00:23
Fwd: NRT persistant flags? - Lucene - [mail # dev]
... on ExternalFileField that is essentially a FST holding all the ids (solr not lucene).  Like the FieldCache, it holds a WeakHashMap where the OpenBitSet is loaded by iterating the FST on the reader...
... (just like ExternalFileField)  This seems to work OK, but there *must* be something better!  Any ideas on the right approach for something like this?  This feels like it should be related to Doc...
[+ show more]
   Author: Ryan McKinley, 2013-03-14, 17:47
Re: QueryElevationComponent - Solr - [mail # user]
...hymm -- that *should* not be the case.  The id field in   QueryElevationComponent uses the globally defined field:       SchemaField sf = core.getSchema().getUniqueKeyField...
...();      ...      idField = sf.getName().intern();  The only thing that may be weird is that if you id field is named   "myid", your elevate.xml file still refers to "id" as the unique key.    Is that what you...
   Author: Ryan McKinley, 2008-11-22, 23:29
Sort:
project
Solr (334)
Lucene (64)
Tika (1)
type
mail # user (207)
mail # dev (138)
issue (54)
date
last 7 days (0)
last 30 days (0)
last 90 days (3)
last 6 months (6)
last 9 months (399)
author
Chris Hostetter (2617)
Erick Erickson (2015)
Yonik Seeley (1645)
Erik Hatcher (1226)
Michael McCandless (1051)
Otis Gospodnetic (1001)
Jack Krupansky (751)
Uwe Schindler (709)
Grant Ingersoll (679)
Lance Norskog (507)
Robert Muir (501)
Markus Jelsma (482)
Ahmet Arslan (464)
Shalin Shekhar Mangar (414)
Mark Miller (401)
Ryan McKinley