i have an lucene index with an "uniqueKey"
<uniqueKey>ID</uniqueKey>
As far as i know, this key have to be "text" (not int or long).
<field name="ID" type="string" indexed="true" stored="true"/>
An small application used the lucene index in order to search only in those records, which are added since the last run of that application.
To reach that goal, i'm trying the following.
- Load the last ID (from flatfile) into the variable $oldID
- get the current (last/highest) ID from Solr/lucene into the variable $currentID
- execute an range search between $oldID and $currentID
- Save the $currentID into a flat file for next Search/for next run
Unfortunately I notice a problem:
A.) how to find the highest ID?
or B.) how i handle the unique key as an digit, not text/char
I tried something like that:
http://localhost:8080/solr/select/?defType=func&q=max(ID,0)&fq=ID:[$oldID+TO+$currentID]&fl=ID
...which returns strange thinks: "999999" as the highest value. That's not correct, because the highest ID is 1043725. I think this is because ID is an Text-Field
C.) maybe there is any other way to search only at the last added recoreds?
Thanks for any kind of help!