The document proposes a new indexing technique called Cache-Sensitive Search Trees (CSS-trees) for main memory databases. CSS-trees augment binary search trees by storing a directory structure on top of a sorted array to improve cache performance without significant extra space. The document compares CSS-trees to other indexing techniques such as hash indexes, binary search trees, B+-trees, and T-trees in terms of lookup time and space usage. Experimental results show that CSS-trees outperform other techniques, with lookup times over 2x faster than binary search, due to better cache behavior from improved data locality.