public TextIndexerService() { configuration = new TextIndexCfg(); tenantsProvider = new TenantsProvider(configuration.ConnectionStringName, configuration.UserActivityDays); worker = new Thread(DoWork) { Priority = ThreadPriority.Lowest, Name = "Full Text Indexer", }; stop = new ManualResetEvent(false); }
public TextSearcherService() { configuration = new TextIndexCfg(); }