On 10/23/06, Panayiotis Papadopoulos <[EMAIL PROTECTED]> wrote:
Hi everyone,
i have the following problem... i use UTF-8 and my solr is deployed with
the aid of jetty
So far i have no problem with UTF-8 in the sense than i can store
anything and then it is displayed properly the problem is when i want to
retrieve according to a text field which is not encoded in latin
characters....

for example q=name:ILSP will return the results i want
but q=name:ΙΕΛ would not....

What are you using as the client?
The problem is most likely related to client encoding...

One way to nail this down is to use netcat (nc) and have it act as the
solr server, then see what the client sends.

nc -l -p 8983
will accept incoming connections and print what is sent on the terminal.
nc -l -p 8983 -o out.txt
will put a hex dump of what the client sent to out.txt

-Yonik

Reply via email to