Shared Memory Config Store - Quant Developer Interview Question
Difficulty: Medium
Category: systems
Practice quant interview questions from top firms including Jane Street, Citadel, Two Sigma, DE Shaw, and other leading quantitative finance companies.
Topics: c++, systems, ipc, low-latency
Problem Description
High-frequency trading systems require ultra-low latency access to dynamic configuration parameters like risk limits and strategy flags across multiple processes. POSIX shared memory provides an efficient mechanism for this by mapping memory segments directly into a process's address space, bypassing kernel overhead for subsequent read and write operations.
Task
Implement the ConfigStore class to manage a fixed-size array of double values in POSIX shared memory. The implementation must handle s
Practice this medium developer interview question on MyntBit - the all-in-one quant learning platform with 200+ quant interview questions for Jane Street, Citadel, Two Sigma, and other top quantitative finance firms.