Skip to content

《信息内容安全》搜索引擎设计作业的Web服务部分

Notifications You must be signed in to change notification settings

catmade/Searcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

小规模搜索引擎Web服务

logo

主项目

截图

  • 主页

  • 搜索界面

ElasticSearch

创建索引

"analyzer": "ik_max_word"

{
    "settings": {
        "number_of_shards": "5",
        "number_of_replicas": "0"
    },
    "mappings": {
        "properties": {
            "title": {
                "type": "text"
            },
            "weight": {
                "type": "double"
            },
            "content" : {
            	"type" : "text"	
            },
            "content_type": {
                "type": "text"
            },
            "url": {
                "type": "text"
            },
            "update_date": {
                "type": "date",
                "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"
            }
        }
    }
}

查询

  • term
GET 127.0.0.1/page/_search
{
    "from" : 0,     // 从第一个开始
    "size" : 5,     // 的5个结果
    "query" : {
        "term" : {
            "content" : "西文"
        }
    }
}

GET 127.0.0.1/page/_search
{
    "from" : 0,     // 从第一个开始
    "size" : 5,     // 的5个结果
    "query" : {
        "terms" : {
            "content" : ["西文", "中文"]
        }
    }
}

  • match(使用分词器)
// 查询所有
GET 127.0.0.1/page/_search
{
    "query" : {
        "match_all" : {}
    }
}
// 短语匹配,严格匹配
GET 127.0.0.1/page/_search
{
    "from" : 0,     // 从第一个开始
    "size" : 5,     // 的5个结果
    "query" : {
        "match_parse" : {
            "content" : "西文"
        }
    }
}
// 短语匹配,严格匹配
GET 127.0.0.1/page/_search
{
    "from" : 0,     // 从第一个开始
    "size" : 5,     // 的5个结果
    "query" : {
        "match" : {
            "content" : "西文"
        }
    }
}

About

《信息内容安全》搜索引擎设计作业的Web服务部分

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published