码迷,mamicode.com
首页 > 其他好文 > 详细

elasticsearch 相似推荐

时间:2017-05-25 21:59:37      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:elasticsearch 相似推荐

curl -XPUT ‘http://localhost:9200/recommend?pretty‘ -d‘

{

    "settings": {

 "number_of_replicas" : 2,

 "similarity" : {

 "my_similarity" : {

"type" : "BM25",

"k1" : 1.2,

"b" : 0.75

 }

     }

},

    "mappings": {

     "recommend": {

       "properties": {    

"name":{

 "type" : "string",

 "similarity" : "my_similarity"

}

       }

    }

    }

}‘;


elasticsearch 相似推荐

标签:elasticsearch 相似推荐

原文地址:http://12597095.blog.51cto.com/12587095/1929537

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!