I am a newbie on Lucid and SOLR. I am checking new Lucid Work enterprises Admin interface to create data source and find that there is only one option to create Incremental indexing which is basically a delta query. But i can create multiple nested queries.

for ex: if i have a main query: "select Item_ID,Item_ID as id , itemcode, brand.Brand_ID from item left join brand on item.Brand_Id = brand.Brand_ID item.gcrecord is null"

and Delta query as : "select Item_ID,Item_ID as id from item where last_modified > $ and gcrecord is null"

and nested query as : "select ItemLanguage_Id, Item_ID, itemname from itemlanguage where Item_ID=$ and gcrecord is null and language_id=1"

as you can see in above given queries that delta query will work only for "last_modified" of "Item" table. But what if i need to get latest data from "Itemlanguage" table as in First nested queries.

I wonder that how can i create Delta query for nested queries if i have to get latest data from a tables involved in Nested queries. As in SOLR we can create delta queries with each child entity to fetch latest data from that.

Is not there any way to create delta query with nested queries?

Please correct me if i am thinking on wrong path. looking forward for your valuable suggestions/solutions. Thanks in advance.

link|improve this question

25% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.