Export to
This item was added directly to Calagator
Tuesday, February 8, 2011 at 3:26pm.
Tuesday, February 8, 2011 at 3:26pm.
Galois Tech Talk: Faster Persistent Data Structures Through Hashing
–
Website
Description
Presented by Johan Tibell.
The most commonly used map (dictionary) data type in Haskell is implemented using a size balanced tree. While size balanced trees provide good asymptotic performance, their real world performance is not stellar, especially when used with keys which are expensive to compare, such as strings.
In this talk we will look at two different map implementations that use hashing to achieve better real world performance. The implementations have different performance characteristics: one provides very fast look-ups while the other trades better insert performance for somewhat slower look-ups. I will describe the design of these data structures and show some early benchmark results.