Christopher Hotchkiss
Christopher Hotchkiss
Currently new pages are selected based on appending to the end instead of based on pages being in use or not. Switch this to using just the free space map....
A lot of my low level code is very heavy and sensitive to locks. The Tokio project has a library called loom that seems to offer a reasonable way to...
https://github.com/chotchki/feophant/blob/a67e8f736ef8f847276915fa9ea4a70185c2731a/src/codec/network_frame.rs#L96-L96
I feel like I parse too early however any work on this should wait until I can really profile this.
At the moment I have the license set to AGPL3.0 but that IS NOT conducive to getting people interested in this as a library. Once I get to a MVP...
* https://github.com/reorg/pg_repack * Investigate if the zheap table format would be better to implement. * Until I get past a WAL implementation and planner costs I don't think its worth...
* The codec that parses the network traffic is pretty naive. You could make the server allocate 2GB of data for a DDOS easily. * * We should either add...
Right now the main function runs the server from primitives. The Tokio Tower layer will probably do it better.