Re: Need approach to store JSON data in Lucene index

2021-06-17 Thread Adrien Grand
In general, the preferred approach is denormalizing, but your description suggests that you want to be able to query anything: actions, tasks, test cases, etc. so I guess that the most natural approach would be to leverage Lucene's support for index-time joins, see the documentation of the join

Need approach to store JSON data in Lucene index

2021-06-17 Thread Amol Suryawanshi
Hi Team, We are using Lucene Java library in our organization to store JSON files data into to Lucene indexes. Our JSON file are structured in below format. 1. Testcase has several Testcase steps 2. Testcase has several Tasks 3. Tasks has task step 4. Task step has Actions and