lucene之建立索引代碼

來源:互聯網
上載者:User

標籤:on()   索引   建立索引   系統   資料擷取   direct   分詞   for   except   

public void createIndex() throws IOException {

// 第一步採集資料:(jdbc採集資料)

BookDao dao = new BookDaoImpl();

List<Book> queryBookList = dao.queryBookList();

// 將資料擷取放到docment對象中

Document doc = null;

List<Document> docList = new ArrayList<>();

for (Book book : queryBookList) {

// 根據需求建立不同的field     Store是是否儲存

doc = new Document();

Field id = new TextField("id", book.getId().toString(), Store.YES);

Field name = new TextField("name", book.getName(), Store.YES);

Field price = new TextField("price", book.getPrice().toString(), Store.YES);

Field pic = new TextField("pic", book.getPic(), Store.YES);

Field desc = new TextField("description", book.getDescription(), Store.YES);

// 將field域,添加到文檔對象中

doc.add(id);

doc.add(name);

doc.add(price);

doc.add(pic);

doc.add(desc);

docList.add(doc);

}

//建立一個indexWriter對象(通過它反向推理出需要的條件)

//先構造一個directory  指定索引庫的位置,一般使用檔案系統的目錄。

FSDirectory directory = FSDirectory.open(new File("G:\\index01"));

//建立一個分詞器 對文檔中的Field域進行分詞

Analyzer analyzer = new StandardAnalyzer();//標準分詞器

IndexWriterConfig config = new IndexWriterConfig(Version.LATEST, analyzer);

IndexWriter writer = new IndexWriter(directory,config);

//建立索引

for (Document document : docList) {

writer.addDocument(document);

}

//關閉資源

writer.close();

}

lucene之建立索引代碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.