below is the json sample i have imported to solr where id is unique and json_doc field contains whole json.
{ "id" : "cust_123", "json_doc" : "{ "\first_name\":\"xyz\", \"last_name\":\"ABC\", \"address\":\"#s3,Apple store,New York,USA}\" }" }
Now i want to search within the json document like Apple store as query or New york as query or USA .... and i should get the document ...
Want help to define schema.xml for this kind of request.
if you use space tokenizer then it will tokenize on space ... so if i will search for "apple store" then it will not match ....
Please help me