[cache] Comments

This commit is contained in:
Behdad Esfahbod 2025-04-01 17:48:08 -06:00
parent 48e7e5a008
commit 89ab5f2b21

View file

@ -48,10 +48,10 @@
* of the integer.
*
* A cache hit is detected by comparing the low bits of the key
* with the high bits of the integer at the right position in the
* array. If they match, the value is extracted from the least
* significant bits of the integer and returned. Otherwise, a
* cache miss is detected.
* with the high bits of the integer at the array position indexed
* by the high bits of the key. If they match, the value is extracted
* from the least significant bits of the integer and returned.
* Otherwise, a cache miss is reported.
*
* Cache operations (storage and retrieval) involve just a few
* arithmetic operations and a single memory access.