在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中創建索引并添加文檔。需要注意的是,創建索引和定義映射是可選的步驟,您可以直接添加文檔到索引中。