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: examples/miscellaneous.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,4 +29,23 @@ Returns suggestions for a product search query. Returns an Array of Epages::Prod
29
29
```
30
30
jackets = shop.product_suggestions_for("Jacket")
31
31
top = shop.product_suggestions_for("Jacket", limit: 5)
32
+
```
33
+
34
+
## Parallel calls
35
+
36
+
Run the calls in different threads and return the responses in the same order as it was called.
37
+
The keys must be the same that the name of the method to call. If you want to call multiple times tha same call with different parameters put every collection as an array element
0 commit comments