clauda / russa

RUSSA - Rack Upload Service Sample App
0 stars 0 forks source link

Shrine + Tus Ruby Server #5

Open clauda opened 5 years ago

clauda commented 5 years ago

Tus.io is the open protocol for resumable file uploads built on HTTP. It specifies the behaviour and communication required between client and the server during file upload so that the upload is resumable in case the request failed.

A Ruby server for the tus resumable upload protocol. It implements the core 1.0 protocol. https://github.com/janko-m/tus-ruby-server https://github.com/shrinerb/shrine-tus

clauda commented 5 years ago

Falcon is a multi-process, multi-fiber rack-compatible HTTP server built on top of async, async-io, async-container and async-http. Each request is executed within a lightweight fiber and can block on up-stream requests without stalling the entire server process. Falcon supports HTTP/1 and HTTP/2 natively. https://github.com/socketry/falcon