Re: search any field name having a specific value

2017-03-17 Thread Lokesh Madan
May be, index the field names as metadata file. When when querying, first get list of alls fields and then shoot a query. You can do this 2 hop query, or else maintain some cache and then shoot a query. > On Mar 17, 2017, at 11:53 AM, Cristian Lorenzetto > wrote: > > It permits to search in a

Re: How to get the index last modification date ?

2017-04-08 Thread Lokesh Madan
Can’t you introduce the field ? It should be straight forward, an every time you update the index, make sure to update the field. IndexWriter has setCommitData api, which you can call overtime you update/flush the indices. > On Apr 8, 2017, at 2:30 PM, Jean-Claude Dauphin wrote: > > Thank you