I am working on a simple key value store for a project. I want to avoid messing with python server like uwsgi and having a reverse proxy and would like to take this opportunity to work with nginx.<p>I noticed that they added NJS, and they are heavily promoting that. Which one should I use? I will be saving and retrieving files from a disk (cca 200mb per file).
I know about the ngx_http_keyval_module. I, however, would need to make this distributable with something like Raft consensus protocol. Or something similar to that, and I would like to avoid coding this in C if possible.<p>Maybe the solution could be something hybrid between already existing plugins and then do only the distribution part of the thing.