On 7/16/07, Chris Hostetter <[EMAIL PROTECTED]> wrote:
: There is currently no way to force Solr to use the FieldCache method.I'm having a hard time remembering why this is ... i see the line in SimpleFacets that says... if (sf.multiValued() || ft.isTokenized() || ft instanceof BoolField) { // Always use filters for booleans... we know the number of values is very small. ...but i don't understand why both checking isTokenized() ... shouldn't multiValued() be enough?
A field could return "false" for multiValued() and still have multiple tokens per document for that field. -Yonik
