Index files not being deleted

2007-09-24 Thread AgentHubcap
I've got an issue with my index files not being deleted. I have a cron job set up to kick off the index process every 5 minutes (test box, with little data). The process is as follows: - Delete all index files via a delete command - Loop through all the records in the database and index them -

Re: Index files not being deleted

2007-09-24 Thread AgentHubcap
I'm running 1.2. Acutally, i am doing an optimize after I delete the indexes. (twice, as I read there was an issue with the optimize). Do I need to close something manually? Here's my optimize code: private void optimize() throws IOException { UpdateHandler upd

Re: Index files not being deleted

2007-09-25 Thread AgentHubcap
As it turns out I was modifying code that wasn't being run. Running an optimize after deleting did solve my problem. =) AgentHubcap wrote: > > I'm running 1.2. > > Acutally, i am doing an optimize after I delete the indexes. (twice, as I > read there was an issue

Re: Index files not being deleted

2007-10-09 Thread AgentHubcap
So, this problem came up again. Now it only happens in a linux environment when searches are being conducted while an index is running. Does anything need to be closed on the searching side? AgentHubcap wrote: > > As it turns out I was modifying code that wasn't being run.