Hey, everyone.<p>I am currently working on AllyDB, which is basically my own Redis, which I am writing in Elixir.<p>Currently, the database is nowhere close to being ready, as you can see in the roadmap, but I am doing my best to add stuff as fast as possible.<p>Currently the implementation is very simple, with an in memory table, an append log persistence system, as well as an interval persistence system as a backup.<p>The database could definitely be optimized further, especially when it comes to persistence, which I am planning to do in the future.<p>I'm also planning to use Rust NIFs for specific tasks for the performance gains over Elixir and BEAM.<p>Writes and deletes are currently asynchronous, but I will add blocking versions of them soon.<p>I am trying to make the system as fault tolerant as possible, and currently everything except the TCP connections are fault tolerant.<p>I'm also working on a TypeScript client for the project, so yeah, that kind of sums it up.<p>Feel free to check the project and the roadmap out, and let me know what I could improve or give feature or optimization ideas!<p>Thanks, and have a nice one!
Hey OP, this is cool!<p>- What are the reasons you picked Elixir?<p>- What are you motivations for this project?<p>- How does the append log persistence work?<p>- Do you plan on adding clustering support?<p>- How do you plan to make it fault tolerant?<p>Here is the link to the roadmap if anyone is interested - <a href="https://github.com/Allyedge/allydb#roadmap">https://github.com/Allyedge/allydb#roadmap</a>