| I've got an implementation of a stock exchange that uses the LMAX disruptor pattern in C++
https://github.com/sneilan/stock-exchange And a basic implementation of the LMAX disruptor as a couple C++ files
https://github.com/sneilan/lmax-disruptor-tutorial I've been looking to rebuild this in rust however. I reached the point where I implemented my own websocket protocol, authentication system, SSL etc. Then I realized that memory management and dependencies are a lot easier in rust. Especially for a one man software project. |