while this may seem long enough for most, there is a situation where this is NOT long enough.. While i can create multiple items, I am wondering why that limitation is used. (yes, hash tables do take up memory, but that is NOT an issue).
The limit is not in the hash tables themselves, it's in how long a /command (and arguments) line can be. The limit is ~4kb, which means hash tables are limited by association, not by design. This also means that the behaviour cannot change (not just for hash tables anyway), nor is it only an issue for hash tables. It affects all commands and is an inherent limitation in the language.
Note that this limit only applies to the buffer length of a command. You can still store as much data as you want inside of a bvar, and then store that bvar in a hash table.