Performance
Rate Limiting
VARIO ERP API Rate Limits
Platform API Rate Limits
async function syncWithRateLimit(items, requestsPerSecond)
{
const delay = 1000 / requestsPerSecond;
for (const item of items)
{
await syncItem(item);
await new Promise(resolve => setTimeout(resolve, delay));
}
}Batching
VQL Query Batching
Platform API Batching
Queue Processing Optimization
Batch Size
Priority Processing
Deduplication
Caching
What to Cache
Data
Cache Duration
Rationale
What Not to Cache
Simple In-Memory Cache
Initial Sync Performance
VQL Query Optimization
Last updated
Was this helpful?