jorisvddonk / operation_rm

Operation RM is a space shooter game in which you fight your own filesystem, inspired by Operation: Inner Space.
Other
1 stars 0 forks source link

Async-ify backend /data/* endpoint #15

Open jorisvddonk opened 7 years ago

jorisvddonk commented 7 years ago

Currently, the backend does several synchronous file operations (fs.lstatSync, fs.readdirSync, readChunk.sync) when requesting information about a folder.

These operations should be done asynchronously to improve backend performance.