Skip to content

Commit

Permalink
Remove unfinished sentence
Browse files Browse the repository at this point in the history
Summary: I can't remember what I wanted to say...

Reviewed By: jiayuebao

Differential Revision: D53482503

fbshipit-source-id: 9a66393448060b103e0242107869e80f690f0875
  • Loading branch information
Hao Wu authored and facebook-github-bot committed Feb 6, 2024
1 parent c7077e8 commit 591d02f
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ There will be a section discussing each of the bullets below.
* Intrusive containers: MMContainer and AccessContainer are intrusive containers with minimum memory overhead. Please skip the following bullet points if you know what intrusive containers are.
* Intrusive containers refer to containers that store pointers instead copies of its elements. These containers interact with their elements via intrusive hooks. The hook is typically a function (powered by a class member) of the element type.
* Linked list is an example of intrusive container. The "hook" in this case is the `item* next()` function. To support this, elements of linked list need to have a class member `item* next`. As a result, the container itself has very minimum overhead: it only holds a head pointer.
* To put this into example: Let's say you


## DRAM CompactCache
Expand Down

0 comments on commit 591d02f

Please sign in to comment.