PistonDevelopers / table

A table object type for dynamical data
MIT License
2 stars 1 forks source link

Symbol variant #7

Open bvssvni opened 9 years ago

bvssvni commented 9 years ago

For properties, keys etc. that have a string representation that occurs frequently.

Could replace the string with a hash and store the string in a global hash table.

Universal deterministic hash would be nice.

bvssvni commented 9 years ago

Problem is to manage the memory of the global hash table. Could have a grow-only table, but that would be insecure.