Hi all, Is there a way to read the indexed data for field on which the analysis/processing has been done ?
I know using admin GUI we can see field wise analysis But how can i get hold on the complete document using admin/luke? or any other way? For example, if i have 2 fields called name and compressedname. name has values like apple, green-apple,red-apple compressedname has values like apple,greenapple,redapple Even though i make both these field indexed=true and stored=true I am not able to see the compressed values using admin/luke?id=<mydocid> in response i see something like this- <lst name="name "> <str name="type">string</str> <str name="schema">ITS--------------</str> <str name="flags">ITS--------------</str> <str name="value">GREEN-APPLE</str> <str name="internal">GREEN-APPLE</str> <float name="boost">1.0</float> <int name="docFreq">0</int> </lst> <lst name="compressedname"> <str name="type">string</str> <str name="schema">ITS--------------</str> <str name="flags">ITS--------------</str> <str name="value">GREEN-APPLE</str> <str name="internal">GREEN-APPLE</str> <float name="boost">1.0</float> <int name="docFreq">0</int> </lst> -- Best Regards, Dinesh Naik