tovuk 0.1.67 → 0.1.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,7 +67,12 @@ npx tovuk storage download --service service_1 uploads/logo.png ./logo.png --jso
|
|
|
67
67
|
npx tovuk storage delete --service service_1 uploads/logo.png --json
|
|
68
68
|
npx tovuk kv put --service service_1 CACHE user:1 '{"name":"Ada"}' --json
|
|
69
69
|
npx tovuk kv get --service service_1 CACHE user:1 --json
|
|
70
|
+
npx tovuk kv bulk put --service service_1 CACHE '[{"key":"feature:search","value":"enabled"}]' --json
|
|
71
|
+
npx tovuk kv bulk get --service service_1 CACHE feature:search user:1 --json
|
|
72
|
+
npx tovuk kv bulk delete --service service_1 CACHE feature:search old:key --json
|
|
70
73
|
npx tovuk queue send --service service_1 jobs '{"task":"sync"}' --json
|
|
74
|
+
npx tovuk queue send-batch --service service_1 jobs '[{"body":{"task":"sync"}},{"body":{"task":"index"}}]' --json
|
|
75
|
+
npx tovuk queue metrics --service service_1 jobs --json
|
|
71
76
|
```
|
|
72
77
|
|
|
73
78
|
When a free-tier limit blocks work, run:
|