- Belgium
- https://www.rustybever.be
-
Computer science student from Belgium who loves playing around with servers.
- Joined on
2021-03-28
To keep the application self-contained, we'd need to serve at least the highlight.js file (and probably some css files later on) from the Lander server. For this, it might be good to add a /_/…
lsm_store
After some research, it seems that it isn't actually possible to set a regular file to non-blocking, as the kernel would stil need to block if data needs to be retrieved from the file system.
Pe…
lsm_store
Along with switching to epoll, the dev branch now also supports running the event loop on multiple threads, with the orchestration being done with epoll and oneshot file descriptor events.…
Instead of making the namespace routes POST-able, it might be better to add a namespace or n query param to the existing routes. For example, doing POST /s/?n=test would create a random…
We could add it so that POST-ing to a namespace URL automatically adds a new entry to the namespace with a randomized key. This way, the CLI tool could first create the namespace and then…
landerctl
Expect: 100-continue
For this to work, we might need to introduce the concept of a validator function that is called after the request has been parsed, but before any of its body data has been read. This function…