Performance Optimization
Request coalescing, worker queue batching, and tree-shakeable zero-dependency architecture.
performance.tsx
| 1 | import { resolveDriveImages } from '@driveloader/react'; |
| 2 | |
| 3 | const { results } = await resolveDriveImages(urls, { concurrency: 4 }); |
Usage Notes
Deduplicates concurrent requests for identical file IDs to prevent network bloat.
