1 रिपॉजिटरी
Filesystem implementations that avoid standard synchronization locks for high-concurrency socket operations.
Distinct from File Locking: Focuses on bypassing OS-level inode/dcache locks for performance, rather than application-level file locking.
Explore 1 awesome GitHub repository matching operating systems & systems programming · Lock-Bypass Filesystems. Refine with filters or upvote what's useful.
Fastsocket is a high-performance Linux socket implementation designed for linear scalability on multicore systems. It functions as a TCP throughput optimizer and a multicore packet steering engine that reduces system call overhead and lock contention to increase total network processing capacity. The project distinguishes itself through a network system call interceptor that uses a shared library to redirect standard socket calls to optimized interfaces without requiring changes to application binaries. It employs active connection steering by encoding CPU core IDs into source ports and utili
Circumvents standard inode and dcache locks during socket operations to prevent multicore bottlenecks.