Thank you. We tried your suggestion but we are still getting the
following problem:
<fieldType name="category" class="solr.TextField">
<analyzer type="store">
<tokenizer class="solr.PatternTokenizerFactory" pattern=";"/>
</analyzer>
</fieldType>
<field name="my_facet" type="category" indexed="true" stored="false"
multiValued="true"/>
Sample data:
level one;level two;level three;
level one;level two;level threeB;
When we query for:
level one;level two;level three;*
We are getting back :
level one;level two;level threeB;
Even though the B is before the semicolon. Any idea why?
Thank you,
Nasseam
Check out our solr-powered Ajax search+nav solution:
http://factbook.bodukai.com/
Powered by Boutique:
http://bodukai.com/boutique/
On Apr 17, 2009, at 3:10 PM, Chris Hostetter wrote:
: level one#
: level one#level two#
: level one#level two#level three#
:
: Trying to find the right combination of field type and query to
get the
: desired results. Saw some previous posts about hierarchal facets
which helped
: in the generating the right query but having an issue using the
built in text
: field which ignores our delimiter and the string field which
prevents us from
: doing a start with search. Does anyone have any insight into the
field
: declaration?
Use TextField, with a PatternTokenizer
BTW: if this isn't thread you've already seen, it's handy to know
about...
http://www.nabble.com/Hierarchical-Faceting-to20090898.html#a20176326
-Hoss