elastic_tutorial/The Elasticsearch Documentation/1_Hello-World/Hello_world.es
2025-04-09 09:37:23 +03:30

19 lines
277 B
JavaScript

PUT /firstindex
// create Index
POST firstindex/_doc
{
"message": "Hello_world!"
}
// Insert Into Index
DELETE firstindex
// Delete Index
// congratulations! You have written your first program!
// تبریک! شما اولین برنامه خود را نوشتید