我有一個名爲publications_items的索引和一個名爲「publication」的類型。ElasticSearch PHP - 獲取類型/索引中的10個(最近的)項目的列表
我想最近添加10個出版物。 (一些matchAll原則)
我使用ElasticSearch PHP(http://www.elasticsearch.org/guide/en/elasticsearch/client/php-api/current/_quickstart.html)
基本上我只是做了默認拿到,但我不知道如何在ElasticSearchPHP做到這一點。
在sense.qbox.io我做的:
POST /publications_items/_search { "query": {
"match_all": {} } }
,它工作正常
映射:
PUT /publications_items/ { "mappings": {
"publication": {
"properties": {
"title": {
"type": "string"
},
"url": {
"type": "string"
},
"description": {
"type": "string"
},
"year": {
"type": "integer"
},
"author": {
"type": "string"
}
}
} } }
任何運氣,纔有可能看到你的映射? – eliasah 2014-09-22 14:54:23
對不起,格式問題 – Paul 2014-09-22 14:57:32