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
{{ message }}
This repository was archived by the owner on Jan 31, 2022. It is now read-only.
Update README Android
[This list might not be relevant]
docs: Fix `removeStopWords` query parameter
- Properly document the dual type.
- Improve description.
docs(swift): Update supported platforms (again)
My last change seems to have been overwritten… :/ [ci skip]
You have three options when updating an existing object:
446
446
@@ -458,7 +458,7 @@ JSONObject object = new JSONObject()
458
458
index.saveObjectAsync(object, "myID", null);
459
459
```
460
460
461
-
### Partial update - `partialUpdateObjects`
461
+
### Partial update - `partialUpdateObjectsAsync`
462
462
463
463
You have many ways to update an object's attributes:
464
464
@@ -512,15 +512,15 @@ Note: Here we are decrementing the value by `42`. To decrement just by one, put
512
512
`value:1`.
513
513
514
514
515
-
### Delete objects - `deleteObjects`
515
+
### Delete objects - `deleteObjectsAsync`
516
516
517
517
You can delete an object using its `objectID`:
518
518
519
519
```java
520
520
index.deleteObjectAsync("myID", null);
521
521
```
522
522
523
-
### Delete by query - `deleteByQuery`
523
+
### Delete by query - `deleteByQueryAsync`
524
524
525
525
You can delete all objects matching a single query with the following code. Internally, the API client performs the query, deletes all matching hits, and waits until the deletions have been applied.
526
526
@@ -532,7 +532,7 @@ Query query = /* [ ... ] */;
532
532
index.deleteByQueryAsync(query, null);
533
533
```
534
534
535
-
### Wait for operations - `waitTask`
535
+
### Wait for operations - `waitTaskAsync`
536
536
537
537
All write operations in Algolia are asynchronous by design.
538
538
@@ -652,9 +652,9 @@ Parameters that can be override at search time also have the `indexing` [scope](
You may want to perform multiple operations with one API call to reduce latency.
1636
1636
We expose four methods to perform batch operations:
1637
-
* Add objects - `addObjects`: Add an array of objects using automatic `objectID` assignment.
1638
-
* Update objects - `saveObjects`: Add or update an array of objects that contains an `objectID` attribute.
1639
-
* Delete objects - `deleteObjects`: Delete an array of objectIDs.
1640
-
* Partial update - `partialUpdateObjects`: Partially update an array of objects that contain an `objectID` attribute (only specified attributes will be updated).
1637
+
*Add objects - `addObjectsAsync`:Add an array of objects using automatic `objectID` assignment.
1638
+
*Update objects - `saveObjectsAsync`:Add or update an array of objects that contains an `objectID` attribute.
1639
+
*Delete objects - `deleteObjectsAsync`:Delete an array of objectIDs.
1640
+
*Partial update - `partialUpdateObjectsAsync`:Partially update an array of objects that contain an `objectID` attribute (only specified attributes will be updated).
1641
1641
1642
1642
Example using automatic `objectID` assignment:
1643
1643
```java
@@ -1700,7 +1700,7 @@ The attribute **action** can have these values:
1700
1700
- partialUpdateObjectNoCreate
1701
1701
- deleteObject
1702
1702
1703
-
### Backup / Export an index - `browse`
1703
+
### Backup/Export an index - `browseAsync`
1704
1704
1705
1705
The `search` method cannot return more than 1,000 results. If you need to
1706
1706
retrieve all the content of your index (for backup, SEO purposes or for running
0 commit comments