Are memory pools sorted? #2086
Answered
by
elBoberido
gpalmer-latai
asked this question in
Q&A
-
This is more of a sanity check than anything but, I'm looking at MemoryManager::getChunk right now and to me it looks like the first memory pool is selected which has a chunk big enough to accomodate a message. Does this mean that if my roudi config has
And i loan a small message, it'll select a chunk from the first memory pool to publish into? Or am I missing some sort of sorting logic somewhere? |
Beta Was this translation helpful? Give feedback.
Answered by
elBoberido
Nov 10, 2023
Replies: 1 comment 1 reply
-
I should be sorted, else |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gpalmer-latai
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I should be sorted, else
MemoryManager::addMemPool
would abort with an error. It is done inMePooConfig::optimize
.