Can you include an example of the content you index and the result you're
seeing?


If you index this:


<html lang="en"><title>test</title></html>


And it looks like this in the raw result:


"<html lang=\"en\"><title>test<\/title><\/html>"


That's just the escaping that needs to be done for JSON. It's applied on
the response data before sending it off, not stored like that in the index.
Any tool that decodes that JSON result will be working on the string as it
was indexed.


If it's something else, please also include the relevant field definition
from your Solr schema so we can see what's going on there.


Thomas

Op zo 11 mei 2025 om 20:59 schreef anon anon <anonimoussech...@gmail.com>:

> Hello.
>
> I want to store a FULL web page including tags in it full original content.
> It is for a cyber security tool.
>
> Once visiting at http://localhost:8984/solr/#/MYCOLLECTION/query?q=*:* , I
> see escaping (that I do not wish), I still do not see escape when browsing
> at : http://localhost:8984/solr/MYCOLLECTION/select?q=* and then when I
> curl with curl "http://localhost:8984/solr/MYCOLLECTION/select?q=*"; I
> still
> have the escape.
>
> How to store html in a non escaped result please?
>
> Best regards.
>

Reply via email to