I’m working on Solr project.. When I search for a word say (google) ,the results will be something like this:
[Sign In] [About us] google is a search engine…. etc
As you can see, in the search results I need to remove the Hyperlinks (About us and Sign in ) from the content.. How can I do this with Solr.
Thank you in advance.
Solr would return you back what you feed into Solr.
So if the link are stored into the field, they would be returned with the response as is.
The filtering part needs to be handled at client side.