Removing sunset and sunrise from lucene index.
This commit is contained in:
parent
2531f62a7a
commit
87ce1a8d9d
1 changed files with 0 additions and 35 deletions
|
@ -174,41 +174,6 @@ public class Entity2LuceneDoc implements Obj2DocIface{
|
||||||
}
|
}
|
||||||
doc.add( new Field(term.MODTIME, value , Field.Store.YES, Field.Index.NOT_ANALYZED));
|
doc.add( new Field(term.MODTIME, value , Field.Store.YES, Field.Index.NOT_ANALYZED));
|
||||||
|
|
||||||
//do sunrise and sunset. set to 'null' if not found
|
|
||||||
// which would indicate that it was sunrised at the beginning of
|
|
||||||
// time or sunset at the end of time.
|
|
||||||
try{
|
|
||||||
value = null;
|
|
||||||
if( ent.getSunrise() != null ){
|
|
||||||
value = (new DateTime(ent.getSunrise().getTime()))
|
|
||||||
.toString(LuceneIndexer.DATE_FORMAT);
|
|
||||||
}
|
|
||||||
}catch (Exception ex){
|
|
||||||
value = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if( value != null ){
|
|
||||||
doc.add( new Field(term.SUNRISE, value, Field.Store.YES, Field.Index.NOT_ANALYZED));
|
|
||||||
}else{
|
|
||||||
doc.add(new Field(term.SUNRISE, earliestTime, Field.Store.YES, Field.Index.NOT_ANALYZED));
|
|
||||||
}
|
|
||||||
|
|
||||||
try{
|
|
||||||
value = null;
|
|
||||||
if( ent.getSunset() != null ){
|
|
||||||
value = (new DateTime(ent.getSunset().getTime()))
|
|
||||||
.toString(LuceneIndexer.DATE_FORMAT);
|
|
||||||
}
|
|
||||||
}catch (Exception ex){
|
|
||||||
value = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if( value != null ){
|
|
||||||
doc.add( new Field(term.SUNSET, value, Field.Store.YES, Field.Index.NOT_ANALYZED));
|
|
||||||
}else{
|
|
||||||
doc.add(new Field(term.SUNSET, latestTime, Field.Store.YES, Field.Index.NOT_ANALYZED));
|
|
||||||
}
|
|
||||||
|
|
||||||
try{
|
try{
|
||||||
value = null;
|
value = null;
|
||||||
if( ent.getTimekey() != null ){
|
if( ent.getTimekey() != null ){
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue