23 / resumable.js

A JavaScript library for providing multiple simultaneous, stable, fault-tolerant and resumable/restartable uploads via the HTML5 File API.
MIT License
4.66k stars 611 forks source link

Conflict when uploading same file in different computer at the same time #554

Closed hawkofsky closed 4 years ago

hawkofsky commented 4 years ago

I think this situation must be exist in real environment. When using resumable.js in production mode, the server receives many upload requests and there could be file that has same filename and size. So identifier is not unique on serverside, so that cause conflict. What's the solution for that? Thanks.