1、pom.xml

  1. <dependencies>
  2. <dependency>
  3. <groupId>commons-io</groupId>
  4. <artifactId>commons-io</artifactId>
  5. <version>2.6</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.apache.lucene</groupId>
  9. <artifactId>lucene-core</artifactId>
  10. <version>7.7.2</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>org.apache.lucene</groupId>
  14. <artifactId>lucene-analyzers-common</artifactId>
  15. <version>7.7.2</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.apache.lucene</groupId>
  19. <artifactId>lucene-queryparser</artifactId>
  20. <version>7.7.2</version>
  21. </dependency>
  22. <!-- 测试 -->
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <version>4.12</version>
  27. </dependency>
  28. <!-- mysql数据库驱动 -->
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. <version>5.1.48</version>
  33. </dependency>
  34. <!-- IK中文分词器 -->
  35. <!-- https://mvnrepository.com/artifact/com.github.magese/ik-analyzer -->
  36. <dependency>
  37. <groupId>com.github.magese</groupId>
  38. <artifactId>ik-analyzer</artifactId>
  39. <version>8.5.0</version>
  40. </dependency>
  41. </dependencies>

2、索引操作

2.1、创建索引库

  1. @org.junit.Test
  2. public void createIndexTest() throws Exception {
  3. //1. 采集数据
  4. SkuDao skuDao = new SkuDaoImpl();
  5. List<Sku> skuList = skuDao.querySkuList();
  6. //文档集合
  7. List<Document> docList = new ArrayList<>();
  8. for (Sku sku : skuList) {
  9. //2. 创建文档对象
  10. Document document = new Document();
  11. //创建域对象并且放入文档对象中
  12. /**
  13. * 是否分词: 否, 因为主键分词后无意义
  14. * 是否索引: 是, 如果根据id主键查询, 就必须索引
  15. * 是否存储: 是, 因为主键id比较特殊, 可以确定唯一的一条数据, 在业务上一般有重要所用, 所以存储
  16. * 存储后, 才可以获取到id具体的内容
  17. */
  18. document.add(new StringField("id", sku.getId(), Field.Store.YES));
  19. /**
  20. * 是否分词: 是, 因为名称字段需要查询, 并且分词后有意义所以需要分词
  21. * 是否索引: 是, 因为需要根据名称字段查询
  22. * 是否存储: 是, 因为页面需要展示商品名称, 所以需要存储
  23. */
  24. document.add(new TextField("name", sku.getName(), Field.Store.YES));
  25. /**
  26. * 是否分词: 是(因为lucene底层算法规定, 如果根据价格范围查询, 必须分词)
  27. * 是否索引: 是, 需要根据价格进行范围查询, 所以必须索引
  28. * 是否存储: 是, 因为页面需要展示价格
  29. */
  30. document.add(new IntPoint("price", sku.getPrice()));
  31. document.add(new StoredField("price", sku.getPrice()));
  32. /**
  33. * 是否分词: 否, 因为不查询, 所以不索引, 因为不索引所以不分词
  34. * 是否索引: 否, 因为不需要根据图片地址路径查询
  35. * 是否存储: 是, 因为页面需要展示商品图片
  36. */
  37. document.add(new StoredField("image", sku.getImage()));
  38. /**
  39. * 是否分词: 否, 因为分类是专有名词, 是一个整体, 所以不分词
  40. * 是否索引: 是, 因为需要根据分类查询
  41. * 是否存储: 是, 因为页面需要展示分类
  42. */
  43. document.add(new StringField("categoryName", sku.getCategoryName(), Field.Store.YES));
  44. /**
  45. * 是否分词: 否, 因为品牌是专有名词, 是一个整体, 所以不分词
  46. * 是否索引: 是, 因为需要根据品牌进行查询
  47. * 是否存储: 是, 因为页面需要展示品牌
  48. */
  49. document.add(new StringField("brandName", sku.getBrandName(), Field.Store.YES));
  50. //将文档对象放入到文档集合中
  51. docList.add(document);
  52. }
  53. //3. 创建分词器, StandardAnalyzer标准分词器, 对英文分词效果好, 对中文是单字分词, 也就是一个字就认为是一个词.
  54. Analyzer analyzer = new IKAnalyzer();
  55. //4. 创建Directory目录对象, 目录对象表示索引库的位置
  56. Directory dir = FSDirectory.open(Paths.get("D:\\dir"));
  57. //5. 创建IndexWriterConfig对象, 这个对象中指定切分词使用的分词器
  58. IndexWriterConfig config = new IndexWriterConfig(analyzer);
  59. //6. 创建IndexWriter输出流对象, 指定输出的位置和使用的config初始化对象
  60. IndexWriter indexWriter = new IndexWriter(dir, config);
  61. //7. 写入文档到索引库
  62. for (Document doc : docList) {
  63. indexWriter.addDocument(doc);
  64. }
  65. //8. 释放资源
  66. indexWriter.close();
  67. }

2.2、索引库修改操作

  1. @org.junit.Test
  2. public void updateIndexTest() throws Exception {
  3. //需要变更成的内容
  4. Document document = new Document();
  5. document.add(new StringField("id", "100000003145", Field.Store.YES));
  6. document.add(new TextField("name", "xxxx", Field.Store.YES));
  7. document.add(new IntPoint("price", 123));
  8. document.add(new StoredField("price", 123));
  9. document.add(new StoredField("image", "xxxx.jpg"));
  10. document.add(new StringField("categoryName", "手机", Field.Store.YES));
  11. document.add(new StringField("brandName", "华为", Field.Store.YES));
  12. //3. 创建分词器, StandardAnalyzer标准分词器, 对英文分词效果好, 对中文是单字分词, 也就是一个字就认为是一个词.
  13. Analyzer analyzer = new StandardAnalyzer();
  14. //4. 创建Directory目录对象, 目录对象表示索引库的位置
  15. Directory dir = FSDirectory.open(Paths.get("D:\\dir"));
  16. //5. 创建IndexWriterConfig对象, 这个对象中指定切分词使用的分词器
  17. IndexWriterConfig config = new IndexWriterConfig(analyzer);
  18. //6. 创建IndexWriter输出流对象, 指定输出的位置和使用的config初始化对象
  19. IndexWriter indexWriter = new IndexWriter(dir, config);
  20. //修改, 第一个参数: 修改条件, 第二个参数: 修改成的内容
  21. indexWriter.updateDocument(new Term("id", "100000003145"), document);
  22. //8. 释放资源
  23. indexWriter.close();
  24. }

2.3、测试根据条件删除

  1. @org.junit.Test
  2. public void deleteIndexTest() throws Exception {
  3. //3. 创建分词器, StandardAnalyzer标准分词器, 对英文分词效果好, 对中文是单字分词, 也就是一个字就认为是一个词.
  4. Analyzer analyzer = new StandardAnalyzer();
  5. //4. 创建Directory目录对象, 目录对象表示索引库的位置
  6. Directory dir = FSDirectory.open(Paths.get("D:\\dir"));
  7. //5. 创建IndexWriterConfig对象, 这个对象中指定切分词使用的分词器
  8. IndexWriterConfig config = new IndexWriterConfig(analyzer);
  9. //6. 创建IndexWriter输出流对象, 指定输出的位置和使用的config初始化对象
  10. IndexWriter indexWriter = new IndexWriter(dir, config);
  11. //测试根据条件删除
  12. //indexWriter.deleteDocuments(new Term("id", "100000003145"));
  13. //测试删除所有内容
  14. indexWriter.deleteAll();
  15. //8. 释放资源
  16. indexWriter.close();
  17. }

2.4、测试创建索引速度优化

  1. @org.junit.Test
  2. public void createIndexTest2() throws Exception {
  3. //1. 采集数据
  4. SkuDao skuDao = new SkuDaoImpl();
  5. List<Sku> skuList = skuDao.querySkuList();
  6. //文档集合
  7. List<Document> docList = new ArrayList<>();
  8. for (Sku sku : skuList) {
  9. //2. 创建文档对象
  10. Document document = new Document();
  11. document.add(new StringField("id", sku.getId(), Field.Store.YES));
  12. document.add(new TextField("name", sku.getName(), Field.Store.YES));
  13. document.add(new IntPoint("price", sku.getPrice()));
  14. document.add(new StoredField("price", sku.getPrice()));
  15. document.add(new StoredField("image", sku.getImage()));
  16. document.add(new StringField("categoryName", sku.getCategoryName(), Field.Store.YES));
  17. document.add(new StringField("brandName", sku.getBrandName(), Field.Store.YES));
  18. //将文档对象放入到文档集合中
  19. docList.add(document);
  20. }
  21. long start = System.currentTimeMillis();
  22. //3. 创建分词器, StandardAnalyzer标准分词器, 对英文分词效果好, 对中文是单字分词, 也就是一个字就认为是一个词.
  23. Analyzer analyzer = new StandardAnalyzer();
  24. //4. 创建Directory目录对象, 目录对象表示索引库的位置
  25. Directory dir = FSDirectory.open(Paths.get("D:\\dir"));
  26. //5. 创建IndexWriterConfig对象, 这个对象中指定切分词使用的分词器
  27. /**
  28. * 没有优化 小100万条数据, 创建索引需要7725ms
  29. *
  30. */
  31. IndexWriterConfig config = new IndexWriterConfig(analyzer);
  32. //设置在内存中多少个文档向磁盘中批量写入一次数据
  33. //如果设置的数字过大, 会过多消耗内存, 但是会提升写入磁盘的速度
  34. //config.setMaxBufferedDocs(500000);
  35. //6. 创建IndexWriter输出流对象, 指定输出的位置和使用的config初始化对象
  36. IndexWriter indexWriter = new IndexWriter(dir, config);
  37. //设置多少给文档合并成一个段文件,数值越大索引速度越快, 搜索速度越慢; 值越小索引速度越慢, 搜索速度越快
  38. //indexWriter.forceMerge(1000000);
  39. //7. 写入文档到索引库
  40. for (Document doc : docList) {
  41. indexWriter.addDocument(doc);
  42. }
  43. //8. 释放资源
  44. indexWriter.close();
  45. long end = System.currentTimeMillis();
  46. System.out.println("=====消耗的时间为:==========" + (end - start) + "ms");
  47. }

3、高级搜索

3.1、关键字查询

  1. @Test
  2. public void testIndexSearch() throws Exception {
  3. //1. 创建分词器(对搜索的关键词进行分词使用)
  4. //注意: 分词器要和创建索引的时候使用的分词器一模一样
  5. Analyzer analyzer = new StandardAnalyzer();
  6. //2. 创建查询对象,
  7. //第一个参数: 默认查询域, 如果查询的关键字中带搜索的域名, 则从指定域中查询, 如果不带域名则从, 默认搜索域中查询
  8. //第二个参数: 使用的分词器
  9. QueryParser queryParser = new QueryParser("name", analyzer);
  10. //3. 设置搜索关键词
  11. //华 OR 为 手 机
  12. Query query = queryParser.parse("华为手机");
  13. //4. 创建Directory目录对象, 指定索引库的位置
  14. Directory dir = FSDirectory.open(Paths.get("D:\\dir"));
  15. //5. 创建输入流对象
  16. IndexReader indexReader = DirectoryReader.open(dir);
  17. //6. 创建搜索对象
  18. IndexSearcher indexSearcher = new IndexSearcher(indexReader);
  19. //7. 搜索, 并返回结果
  20. //第二个参数: 是返回多少条数据用于展示, 分页使用
  21. TopDocs topDocs = indexSearcher.search(query, 10);
  22. //获取查询到的结果集的总数, 打印
  23. System.out.println("=======count=======" + topDocs.totalHits);
  24. //8. 获取结果集
  25. ScoreDoc[] scoreDocs = topDocs.scoreDocs;
  26. //9. 遍历结果集
  27. if (scoreDocs != null) {
  28. for (ScoreDoc scoreDoc : scoreDocs) {
  29. //获取查询到的文档唯一标识, 文档id, 这个id是lucene在创建文档的时候自动分配的
  30. int docID = scoreDoc.doc;
  31. //通过文档id, 读取文档
  32. Document doc = indexSearcher.doc(docID);
  33. System.out.println("==================================================");
  34. //通过域名, 从文档中获取域值
  35. System.out.println("===id==" + doc.get("id"));
  36. System.out.println("===name==" + doc.get("name"));
  37. System.out.println("===price==" + doc.get("price"));
  38. System.out.println("===image==" + doc.get("image"));
  39. System.out.println("===brandName==" + doc.get("brandName"));
  40. System.out.println("===categoryName==" + doc.get("categoryName"));
  41. }
  42. }
  43. //10. 关闭流
  44. }

3.2、数值范围查询

  1. @Test
  2. public void testRangeQuery() throws Exception {
  3. //1. 创建分词器(对搜索的关键词进行分词使用)
  4. //注意: 分词器要和创建索引的时候使用的分词器一模一样
  5. Analyzer analyzer = new StandardAnalyzer();
  6. //2. 创建查询对象,
  7. Query query = IntPoint.newRangeQuery("price", 100, 1000);
  8. //4. 创建Directory目录对象, 指定索引库的位置
  9. Directory dir = FSDirectory.open(Paths.get("D:\\dir"));
  10. //5. 创建输入流对象
  11. IndexReader indexReader = DirectoryReader.open(dir);
  12. //6. 创建搜索对象
  13. IndexSearcher indexSearcher = new IndexSearcher(indexReader);
  14. //7. 搜索, 并返回结果
  15. //第二个参数: 是返回多少条数据用于展示, 分页使用
  16. TopDocs topDocs = indexSearcher.search(query, 10);
  17. //获取查询到的结果集的总数, 打印
  18. System.out.println("=======count=======" + topDocs.totalHits);
  19. //8. 获取结果集
  20. ScoreDoc[] scoreDocs = topDocs.scoreDocs;
  21. //9. 遍历结果集
  22. if (scoreDocs != null) {
  23. for (ScoreDoc scoreDoc : scoreDocs) {
  24. //获取查询到的文档唯一标识, 文档id, 这个id是lucene在创建文档的时候自动分配的
  25. int docID = scoreDoc.doc;
  26. //通过文档id, 读取文档
  27. Document doc = indexSearcher.doc(docID);
  28. System.out.println("==================================================");
  29. //通过域名, 从文档中获取域值
  30. System.out.println("===id==" + doc.get("id"));
  31. System.out.println("===name==" + doc.get("name"));
  32. System.out.println("===price==" + doc.get("price"));
  33. System.out.println("===image==" + doc.get("image"));
  34. System.out.println("===brandName==" + doc.get("brandName"));
  35. System.out.println("===categoryName==" + doc.get("categoryName"));
  36. }
  37. }
  38. //10. 关闭流
  39. }

3.3、组合查询

  1. @Test
  2. public void testBooleanQuery() throws Exception {
  3. //1. 创建分词器(对搜索的关键词进行分词使用)
  4. //注意: 分词器要和创建索引的时候使用的分词器一模一样
  5. Analyzer analyzer = new StandardAnalyzer();
  6. //2. 创建查询对象,
  7. Query query1 = IntPoint.newRangeQuery("price", 100, 1000);
  8. QueryParser queryParser = new QueryParser("name", analyzer);
  9. //3. 设置搜索关键词
  10. //华 OR 为 手 机
  11. Query query2 = queryParser.parse("华为手机");
  12. //创建布尔查询对象(组合查询对象)
  13. /**
  14. * BooleanClause.Occur.MUST 必须相当于and, 也就是并且的关系
  15. * BooleanClause.Occur.SHOULD 应该相当于or, 也就是或者的关系
  16. * BooleanClause.Occur.MUST_NOT 不必须, 相当于not, 非
  17. * 注意: 如果查询条件都是MUST_NOT, 或者只有一个查询条件, 然后这一个查询条件是MUST_NOT则
  18. * 查询不出任何数据.
  19. */
  20. BooleanQuery.Builder query = new BooleanQuery.Builder();
  21. query.add(query1, BooleanClause.Occur.MUST);
  22. query.add(query2, BooleanClause.Occur.MUST);
  23. //4. 创建Directory目录对象, 指定索引库的位置
  24. Directory dir = FSDirectory.open(Paths.get("D:\\dir"));
  25. //5. 创建输入流对象
  26. IndexReader indexReader = DirectoryReader.open(dir);
  27. //6. 创建搜索对象
  28. IndexSearcher indexSearcher = new IndexSearcher(indexReader);
  29. //7. 搜索, 并返回结果
  30. //第二个参数: 是返回多少条数据用于展示, 分页使用
  31. TopDocs topDocs = indexSearcher.search(query.build(), 10);
  32. //获取查询到的结果集的总数, 打印
  33. System.out.println("=======count=======" + topDocs.totalHits);
  34. //8. 获取结果集
  35. ScoreDoc[] scoreDocs = topDocs.scoreDocs;
  36. //9. 遍历结果集
  37. if (scoreDocs != null) {
  38. for (ScoreDoc scoreDoc : scoreDocs) {
  39. //获取查询到的文档唯一标识, 文档id, 这个id是lucene在创建文档的时候自动分配的
  40. int docID = scoreDoc.doc;
  41. //通过文档id, 读取文档
  42. Document doc = indexSearcher.doc(docID);
  43. System.out.println("==================================================");
  44. //通过域名, 从文档中获取域值
  45. System.out.println("===id==" + doc.get("id"));
  46. System.out.println("===name==" + doc.get("name"));
  47. System.out.println("===price==" + doc.get("price"));
  48. System.out.println("===image==" + doc.get("image"));
  49. System.out.println("===brandName==" + doc.get("brandName"));
  50. System.out.println("===categoryName==" + doc.get("categoryName"));
  51. }
  52. }
  53. //10. 关闭流
  54. }

3.4、测试相关度排序

  1. @Test
  2. public void testIndexSearch2() throws Exception {
  3. //1. 创建分词器(对搜索的关键词进行分词使用)
  4. //注意: 分词器要和创建索引的时候使用的分词器一模一样
  5. Analyzer analyzer = new IKAnalyzer();
  6. //需求: 不管是名称域还是品牌域或者是分类域有关于手机关键字的查询出来
  7. //查询的多个域名
  8. String[] fields = {"name", "categoryName", "brandName"};
  9. //设置影响排序的权重, 这里设置域的权重
  10. Map<String, Float> boots = new HashMap<>();
  11. boots.put("categoryName", 10000000000f);
  12. //从多个域查询对象
  13. MultiFieldQueryParser multiFieldQueryParser = new MultiFieldQueryParser(fields, analyzer, boots);
  14. //设置查询的关键词
  15. Query query = multiFieldQueryParser.parse("手机");
  16. //4. 创建Directory目录对象, 指定索引库的位置
  17. Directory dir = FSDirectory.open(Paths.get("D:\\dir"));
  18. //5. 创建输入流对象
  19. IndexReader indexReader = DirectoryReader.open(dir);
  20. //6. 创建搜索对象
  21. IndexSearcher indexSearcher = new IndexSearcher(indexReader);
  22. //7. 搜索, 并返回结果
  23. //第二个参数: 是返回多少条数据用于展示, 分页使用
  24. TopDocs topDocs = indexSearcher.search(query, 10);
  25. //获取查询到的结果集的总数, 打印
  26. System.out.println("=======count=======" + topDocs.totalHits);
  27. //8. 获取结果集
  28. ScoreDoc[] scoreDocs = topDocs.scoreDocs;
  29. //9. 遍历结果集
  30. if (scoreDocs != null) {
  31. for (ScoreDoc scoreDoc : scoreDocs) {
  32. //获取查询到的文档唯一标识, 文档id, 这个id是lucene在创建文档的时候自动分配的
  33. int docID = scoreDoc.doc;
  34. //通过文档id, 读取文档
  35. Document doc = indexSearcher.doc(docID);
  36. System.out.println("==================================================");
  37. //通过域名, 从文档中获取域值
  38. System.out.println("===id==" + doc.get("id"));
  39. System.out.println("===name==" + doc.get("name"));
  40. System.out.println("===price==" + doc.get("price"));
  41. System.out.println("===image==" + doc.get("image"));
  42. System.out.println("===brandName==" + doc.get("brandName"));
  43. System.out.println("===categoryName==" + doc.get("categoryName"));
  44. }
  45. }
  46. //10. 关闭流
  47. }