pydis
pydis copied to clipboard
A redis clone in Python 3 to disprove some falsehoods about performance.
Excellent work! Just wanted to mention, if straight-line performance is the goal, it may be worth testing a non-async version of the code. Most operations are going to be gated...
On `redis-cli` version 6.0.6, `./benchmark.sh` produces warnings like: ```sh $ ./benchmark.sh pydis 1 Could not connect to Redis at 127.0.0.1:7878: Connection refused WARN: could not fetch server CONFIG Could not...
This is a great project! Would like to see pydis complied with Nuitka, https://nuitka.net/, and re-test the performance.
We should benchmark the memory usage as well, since it's an undoubtedly very important metric for an *in-memory* database.
Aim
Hello. I found this project very interesting, Reading the README it says > The aim of this exercise is to prove that interpreted languages can be just as fast as...
This is a good data point, a lot of our beliefs about software are based on "educated guesses" (translation we just have no clue and make everything up). Thank you...