Lucene index is able to search abut unable to update. we are able to search for something created before certain period but not after that period. Loks like its not updating. Here some code in my class. the syncIndex method is not beingcalled as well... could be that....
protected static TimerCallback _timerDelegate = SyncIndex; protected static Timer _syncTimer = new Timer(_timerDelegate, null, TimeSpan.FromMilliseconds(-1), TimeSpan.FromMinutes(_updateInterval)); protected static bool running = false; public static void SyncIndex(Object stateInfo) { new SearchService().UpdateIndex(); } -- View this message in context: http://lucene.472066.n3.nabble.com/Lucene-index-does-not-update-tp3570768p3570768.html Sent from the Lucene - General mailing list archive at Nabble.com.