Does it make sense to support non-disk backed hash tables? ``` PascalHashTable* table = PHNew(NULL, 2000000, // table size: 20 elements 0.7, // table load: 70% 10, // inline size for key sizeof(data)); // value size ```