Skip to content

Commit

Permalink
max page size default = 32k
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Oct 24, 2024
1 parent 56e9191 commit fabfc0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cista/containers/paged.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ template <typename DataVec, typename SizeType = typename DataVec::size_type,
std::max(std::size_t{2U},
next_power_of_two(sizeof(page<SizeType, PageSizeType>) /
sizeof(typename DataVec::value_type))),
PageSizeType MaxPageSize = 4096>
PageSizeType MaxPageSize = (1 << 15)>
struct paged {
using value_type = typename DataVec::value_type;
using iterator = typename DataVec::iterator;
Expand Down

0 comments on commit fabfc0c

Please sign in to comment.