BrenekH / encodarr

Self-hosted web app for encoding files to a target format using distributed computing.
Mozilla Public License 2.0
63 stars 6 forks source link

Speed up json operations #64

Closed BrenekH closed 3 years ago

BrenekH commented 3 years ago

https://github.com/goccy/go-json is a project that claims to significantly increase the speed of encoding and decoding json.

This may be useful because we have database data that is stored as a slice of bytes because SQLite doesn't support serializing them. One such operation is the scanning of the filesystem (reading and writing to the files table mostly), which does seem to take some time to complete.

BrenekH commented 3 years ago

After some thought, I don't think this is really needed in the project. Closing.