You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: solr/solr-ref-guide/modules/indexing-guide/pages/indexing-with-v2-apis.adoc
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ The following sub-paths are available:
44
44
|`/update/json` |JSON (array of documents) |Same behavior as `/update`; document arrays only
45
45
|`/update/xml` |XML |Supports full XML update syntax (add, delete, commit, optimize)
46
46
|`/update/csv` |CSV |Equivalent to v1 `/update/csv`
47
-
|`/update/bin` |JavaBin |Equivalent to v1 `/update` with `Content-Type: application/javabin`
47
+
|`/update/bin` |Javabin |Equivalent to v1 `/update` with `Content-Type: application/javabin`
48
48
|===
49
49
50
50
IMPORTANT: The v2 `/update` and `/update/json` endpoints are document-only: they process a JSON array of documents (like the v1 `/update/json/docs` path) and do *not* support the full xref:indexing-with-update-handlers.adoc#sending-json-update-commands[JSON update command syntax] (commit, delete, optimize within the request body).
@@ -130,9 +130,9 @@ id,title
130
130
2,Doc 2'
131
131
----
132
132
133
-
== JavaBin Document Indexing
133
+
== Javabin Document Indexing
134
134
135
-
The v2 `/update/bin` endpoint accepts documents in JavaBin format, which is the native binary format used by SolrJ.
135
+
The v2 `/update/bin` endpoint accepts documents in Javabin format, which is the native binary format used by SolrJ.
136
136
This endpoint is primarily intended for use by SolrJ clients.
137
137
138
138
== Commit and Rollback
@@ -177,7 +177,7 @@ The table below summarizes the key differences between the v1 and v2 update endp
177
177
|JSON update commands (commit/delete/optimize) |`/update` |Not supported via `/update` or `/update/json`; use `/update/xml` or URL params
0 commit comments