: I'm trying to index some content that has things like 'java/J2EE' but with : solr.WordDelimiterFilterFactory and parameters [generateWordParts="1" : generateNumberParts="0" catenateWords="0" catenateNumbers="0" : catenateAll="0" splitOnCaseChange="0"] this ends up tokenized as : 'java','j','2',EE' : : Does anyone know a way of having this tokenized as 'java','j2ee'.
WDF was really designed arround the assumption that if java/j2ee was something like a product sku, people might query it as javaj2ee or java-j2ee or java-j-2-ee, or java/j2-ee etc... for more generic text, you may want to use a tokenizer that splits on "/" -Hoss