Hi,
My CF has a column defined to store a structured JSON data as following.
{
"lastname":"mylastname",
"firstname":"myfirstname",
"address":[
"123 california st.",
""
],
"city":"San Francisco",
"state":"CA",
"country":"US",
"emailAddress":"apple@me.com",
"postalCode":"94111",
"phoneNumbers":[
{
"value":"(123) 456-7890",
"type":"dayPhone"
}
]
}
I basically want to create solr index on some of the fields in json such as firstname, lastname. What should be the approach?
Thanks for helping me on this,
