Currently the hash function is a simplified bucketed approach. This will just drop data if the bucket is overflowed because it has to be statically allocated. A cuckoo hash solution with a CAM insertion queue could work better but requires some more careful engineering.
Currently the hash function is a simplified bucketed approach. This will just drop data if the bucket is overflowed because it has to be statically allocated. A cuckoo hash solution with a CAM insertion queue could work better but requires some more careful engineering.