在Elasticsearch中创建索引可以通过以下步骤实现:
curl -XPUT "localhost:9200/my_index"
curl -XPUT "localhost:9200/my_index/_mapping" -d '
{
"properties": {
"title": { "type": "text" },
"content": { "type": "text" }
}
}'
curl -XPOST "localhost:9200/my_index/_doc/1" -d '
{
"title": "Hello World",
"content": "This is a test document"
}'
通过以上步骤,可以在Elasticsearch中创建索引并添加文档。需要注意的是,创建索引和定义映射是可选的步骤,您可以直接添加文档到索引中。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: elasticsearch怎么根据条件删除数据