2
votes
1answer
688 views

Solr WordDelimiterFilterFactory and Period Characters

I am using solr through the sunspot_rails v1.2 gem. In my schema.xml file, I have the following: <fieldType name="text" class="solr.TextField" omitNorms="false"> <analyzer ...
1
vote
0answers
292 views

solr query analyzers

I am trying to use double metaphone as one of the analyzers for duplicate detection. here is how my schema looks like <fieldType name="text" class="solr.TextField" omitNorms="false"> ...
0
votes
2answers
567 views

Solr Sunspot non-indexed field

Solr (via Lucene) supports different ways to indicate the way a field is indexed in a document: indexed, tokenized, stored,... I'm looking for a way to have fields that are stored in Solr but are not ...
2
votes
1answer
400 views

what's the best way to re-index just the models that changed during solr downtime?

if I have millions of User records with some text fields getting indexed to solr on create and on update, how do I go back and re-index the few records that never made it to solr? i.e. what if solr ...
3
votes
2answers
545 views

Rails - Sunspot conditional model indexing

Is there any way to determine on runtime if a model should be indexed or not? Something like: class Article < ActiveRecord::Base searchable :if => :indexable? do ... end private ...