docs.asciidoc 1.0 KB

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