Data Fusion - High Performance with Concurrently Accessed Objects
Data Fusion - integrating complex data from multiple sources
High Performance with Concurrently Accessed Objects
MROW [Multi-Reader One Writer] - Many algorithms examine large amounts of reference data while processing new data. MROW provides readers with a consistent view of committed data while one writer is updating that set of data. MROW is more effective than fine-grained locking because it eliminates the need to repeatedly set and release read locks.

IPLS [In-Process Lock Server] – Most computationally intense applications deploy multithreaded servers in dedicated processors. The IPLS can be directly linked with the application “server” process to avoid TCP/IP and network overheads. Applications that are able to use the IPLS have shown throughput increases of 20 to 40 percent.
