Merge Index 썸네일형 리스트형 [lucene] FSDirectory와 RAMDirectory를 활용한 인덱싱 구현 루씬인액션 책을 보면 FSDriectory와 RAMDirectory를 사용하여 RAMDirectory를 버퍼의 개념으로 활용한 인덱싱 예가 나옵니다. 이걸 한번 테스트 해보려고 해봤는데 잘 안되는 것 입니다. 일단 책에 나온 예는 아래와 같습니다. FSDirectory fsDir = FSDirectory.getDirectory(dirPath, true); RAMDirectory rmaDir = new RAMDirectory(); IndexWriter fsWriter = IndexWriter(fsDir, new SimpleAnalyzer(), true); IndexWriter ramWriter = IndexWriter(ramDir, new SimpleAnalyzer(), true); while(..) { .. 더보기 이전 1 다음