09 2020 档案
摘要:zlib和minizip实现解压zip 原文连接: https://www.cnblogs.com/mtcnn/p/9410039.html #include <stdio.h> #include <string.h> #include "unzip.h" #define dir_delimter
阅读全文
摘要:递归删除文件夹下文件: #include <string.h> // for strcpy(), strcat() #include <io.h> #include<stdio.h> #define Max 100000//文件数量 int FileSearch(const char *dir);
阅读全文
摘要:递归遍历文件夹下文件: #include <string.h> // for strcpy(), strcat() #include <io.h> #include<stdio.h> #define Max 100000//文件数量 int FileSearch(const char *dir);
阅读全文
摘要:ElasticSearch搜索 1 DSL搜索 DSL(Domain Specifific Language)是ES提出的基于json的搜索方式,在搜索时传入特定的json格式的数据来完成不同的搜索需求。 1.1.搜索全部记录并分页 @Test public void testSearchAll()
阅读全文
摘要:全文检索ElasticSearch 1 ElasticSearch介绍 1.1.介绍 1、ElasticSearch是一个基于Lucene的高扩展的分布式搜索服务器,支持开箱即用。 2、ElasticSearch隐藏了Lucene的复杂性,对外提供Restful 接口来操作索引、搜索。 1.2.原理
阅读全文