|
Ripples 1.0
High Performant Software Architecture For Transaction Processing
|
Ripples is a program written in C designed for high performant transaction processing. Application demonstrates a software architecture that optimizes processing via several ways:
Optimizations minimize data (packet) traversal through the kernel, minimize context switching, and minimize CPU cache misses. Architecture also demonstrates how a resource (object) could be efficiently shared amongst threads without the use of locks, and how to move blocking operations to dedicated threads.
Ripples implements a basic authoritative name server. The basic application functionality is that it listens for DNS queries (requests) over UDP and TCP transport protocols, and provides answers (responses). There are numerous settings that could be used to fine tune software behavior to match requirements and optimize behavior.
DNS response behavior is as such:
For more details see: