Directory lock error with Lucene.Net usage in an ASP.NET MVC site
Hi guys,
In the link above essentially is the issue I have.
However I am correctly disposing of the writer.
Problem is my main writer takes 20 mins due to the size of the data (200k + docs 25 Cols) and the slowness of the server.
So I have 2 writers one which does everything (all document on a 4 hour timer)
And one for when someone manually edits a column it removes a document and re adds it.
It is the second one that is throwing the timeout due to the fact that the first writer is still doing its thing taking forever. I would like to increase the timeout is this possible?
Cheers