You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the OS has been using linked lists and arrays for all its variable-storage needs. However, we're becoming to discover that these approaches don't scale: as an array, the descriptor lookup table is limited to 64 descriptors, and the file server takes a TON of time to return data in a high-contention scenario. A solid, reasonably fast hash table would make these ventures much more professional.
The text was updated successfully, but these errors were encountered:
Currently, the OS has been using linked lists and arrays for all its variable-storage needs. However, we're becoming to discover that these approaches don't scale: as an array, the descriptor lookup table is limited to 64 descriptors, and the file server takes a TON of time to return data in a high-contention scenario. A solid, reasonably fast hash table would make these ventures much more professional.
The text was updated successfully, but these errors were encountered: