Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebuild Index Has some issues #24

Open
ryvius-lee opened this issue Nov 19, 2011 · 0 comments
Open

Rebuild Index Has some issues #24

ryvius-lee opened this issue Nov 19, 2011 · 0 comments

Comments

@ryvius-lee
Copy link

Please check FilesystemStore.java line 213 - 220:

            getIndexWriter(index).commit();
            dirtyReader(index);
            getIndexSearcher(name).close();
            indexSearchers.remove(name);
            getIndexWriter(name).close();
            indexWriters.remove(name);
            Files.deleteDirectory(oldFolder);
            newFolder.renameTo(oldFolder);

I change it to:

            getIndexWriter(index).commit();
            getIndexWriter(index).close();
            getIndexSearcher(name).close();
            indexSearchers.remove(name);
            getIndexWriter(name).close();
            indexWriters.remove(name);
            Files.deleteDirectory(oldFolder);
            newFolder.renameTo(oldFolder);

Then it works on my local machine.

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant