quininer / per-thread-object

Efficient per-object thread-local storage implementation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Custom page size

quininer opened this issue · comments

Currently we have hard-coded the page size to 16, which is too wasteful when the number of threads is small.

This is tricky, I don't want to put fastpage on Box<[T]> because it will increase pointer access.

done