C0L / Homa-NIC

2 stars 0 forks source link

Hash Function? #5

Closed C0L closed 9 months ago

C0L commented 1 year ago

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.