Running Long Process: Indexing 5GB docs with Lucene

Posted by Robert Dondo on Stack Overflow See other posts from Stack Overflow or by Robert Dondo
Published on 2010-05-14T12:14:10Z Indexed on 2010/05/14 12:24 UTC
Read the original article Hit count: 243

Filed under:
|
|
|
|

Situation:I have an ASP .NET application that will search through docs using Lucene. I want to run the initial indexing (the index will be incremental after the initial run so there wont be need to index the whole directory again in future). Currently, I have about 5GB of docs (45000files).

Problem: My application times out before completing the process. I have altered the TimeOut like this:

HttpContext.Current.Server.ScriptTimeout = 200000;

but it still does not complete the process.

How can I run the index?

© Stack Overflow or respective owner

Related posts about c#

Related posts about asp