High Frequency Trading Experiments
My experiment into how I would begin to think about a high frequency trading platform. The goal of this experiment is to maintain strict account-level consistency and transaction ordering but with high throughput. In terms of CAP theorem, I am prioritizing consistency and partition tolerance over availability. This system utilizes Redis consumer groups (which could easily scale to a Kakfa-level system) and account-level locks to maintain consistency and ordering.
Rusty Chat
An experiment in creating a high performance, websockets chat service built with Rust and Actix/Actix-Web with an SQLite database and custom session management. Digging deeper into the actor model. Currently containerized with docker and served on digital ocean with an nginx reverse proxy.
Rabin Karp - WASM-pack
This is a rust implementation of the Rabin-Karp string searching algorithm wrapped into a neat npm package for use in node environments. Given a substring pattern and a larger string sample, it will find all indexes where a valid substring match exists. The efficiency of the algorithm is that it uses a rolling hash to be able to function in linear time. By my rudimentary benchmarks, it runs about 4 to 7 times faster than a pure JS algorithm.