: search = "3 D" OR "3D" ? Reason being, by default, a search for "3D" is : being split : into "3 D".
these seems to relate to your other recent question ... Solr is not splitting "3D" into "3 D" by default at query time just for hte hell of it ... it's doing that because it's what the analyzer configured for your fieldtype says it should do .. change your schema.xml to use a differnet analyzer, and you'll get differnet behavior (not just when indexing, but when querying too) -Hoss