Avoid Escaping Spaces in the Query String in a Solr Query
Join the DZone community and get the full member experience.
Join For FreeFollowing up on the previous post about escaping values in a Solr query string, it’s important to note that you should not escape spaces in the query itself. The reason for this is that if you escape spaces in the query “foo bar”, the search will be performed on the term “foo bar” itself, and not with “foo” as one term and “bar” as the other. This will only return documents that has the string “foo bar” in sequence.
The solution is to either remove the space from the escape list in the previous function – and use another function for escaping values where you actually should escape the spaces – or break up the string into “escapable” parts.
The code included beneath performs the last task; it splits the string into different parts delimited by space and then escapes each part of the query by itself.
$queryParts = explode(' ', $this->getQuery());
$queryEscaped = array();
foreach($queryParts as $queryPart)
{
$queryEscaped[] = self::escapeSolrValue($queryPart);
}
$queryEscaped = join(' ', $queryEscaped);
Published at DZone with permission of Mats Lindh, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Knowing and Valuing Apache Kafka’s ISR (In-Sync Replicas)
-
Superior Stream Processing: Apache Flink's Impact on Data Lakehouse Architecture
-
New ORM Framework for Kotlin
-
Five Java Books Beginners and Professionals Should Read
Comments