docs.asciidoc 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [[docs]]
  2. == Document APIs
  3. This section starts with a short introduction to Elasticsearch's <<docs-replication,data replication model>>, followed by a
  4. detailed description of the following CRUD APIs:
  5. .Single document APIs
  6. * <<docs-index_>>
  7. * <<docs-get>>
  8. * <<docs-delete>>
  9. * <<docs-update>>
  10. .Multi-document APIs
  11. * <<docs-multi-get>>
  12. * <<docs-bulk>>
  13. * <<docs-delete-by-query>>
  14. * <<docs-update-by-query>>
  15. * <<docs-reindex>>
  16. NOTE: All CRUD APIs are single-index APIs. The `index` parameter accepts a single
  17. index name, or an `alias` which points to a single index.
  18. include::docs/data-replication.asciidoc[]
  19. include::docs/index_.asciidoc[]
  20. include::docs/get.asciidoc[]
  21. include::docs/delete.asciidoc[]
  22. include::docs/delete-by-query.asciidoc[]
  23. include::docs/update.asciidoc[]
  24. include::docs/update-by-query.asciidoc[]
  25. include::docs/multi-get.asciidoc[]
  26. include::docs/bulk.asciidoc[]
  27. include::docs/reindex.asciidoc[]
  28. include::docs/termvectors.asciidoc[]
  29. include::docs/multi-termvectors.asciidoc[]
  30. include::docs/refresh.asciidoc[]
  31. include::docs/concurrency-control.asciidoc[]