Introduction - If you have any usage issues, please Google them yourself
/** The internal form of a hash table.** The table is an array indexed by the hash of the key collisions* are resolved by hanging a linked list of hash entries off each* element of the array. Although this is a really simple design it* isn t too bad given that pools have a low allocation overhead.*/split from apache for general usage