Query Regarding Full Text Search
Hi All,
Is there any way to make use of non english words like "español" as fulltext in Querybuilder API?
Hi All,
Is there any way to make use of non english words like "español" as fulltext in Querybuilder API?
Hi @binoyp,
Full text search will be able to find español in the content irrespective of language. Please see below OOTB groovy script which is able to find all the references of español in the content
def predicates = [
"path": "/content",
"fulltext": "español"
]
def query = createQuery(predicates)
query.hitsPerPage = 10
def result = query.result
println "${result.totalMatches} hits, execution time = ${result.executionTime}s\n--"
result.hits.each { hit ->
println "hit path = ${hit.node.path}"
}
Please check if UTF-8 is enabled in Apache Sling Request Parameter Handling configuration.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.