My Index :
create index User.lat_lng on User (lat, lng) SPATIAL ENGINE LUCENE
Orientdb documentation says : Query against the index skip the index and do a sequential scan when rebuilding an index :
rebuild index User.lat_lng
How I can maintain the index performance while rebuilding ? Is there any tool that I can use to do this ? Should I consider using another searching method for the nearest neighbor search ?