<div dir="ltr"><div dir="ltr">Hello all,<div><br></div><div>I'm trying to finish the implementation of a Buffer Pool manager that uses the Foreign Memory API</div><div>The below may not be entirely correct (I'm new to the concept of memory management)</div><div><br></div><div>One thing I can't seem to figure out at all, is how to manually deallocate memory handed out to individual pages</div><div>I have a contiguous block of memory/arena used for the buffer pool, each page gets a PAGE_SIZE chunk</div><div><br></div><div>If I want to delete a page from the pool, is it just zeroing the memory, or do I want to close the slice that was allocated?</div><div><br></div><div>Thank you =)</div><div><br></div><div>Code below:</div><div>==========================================</div><div><br></div><div><div>class BufferPoolManager implements AutoCloseable {</div><div>    private static final int PAGE_SIZE = 4096;</div><div>    private static final int NUM_PAGES = 100;</div><div><br></div><div>    private final MemorySession allocator = MemorySession.openConfined();</div><div>    private final MemorySegment bufferPoolArena = allocator.allocate(NUM_PAGES * PAGE_SIZE);</div><div><br></div><div>    private final DiskManager diskManager;</div><div>    private final List<HeapFilePage> pages;</div><div>    private final List<Integer> freeList;</div><div><br></div><div>    public BufferPoolManager(String fileName) throws IOException {</div><div>        this.diskManager = new DiskManager(fileName);</div><div>        this.pages = new ArrayList<>();</div><div>        this.freeList = new ArrayList<>();</div><div>        for (int i = 0; i < NUM_PAGES; i++) {</div><div>            MemorySegment buffer = bufferPoolArena.asSlice(i * PAGE_SIZE, PAGE_SIZE);</div><div>            HeapFilePage page = new HeapFilePage(buffer);</div><div>            page.setPageId(i);</div><div>            pages.add(page);</div><div>            freeList.add(i);</div><div>        }</div><div>    }</div><div>}</div></div><div><br></div><div><br></div></div></div>