Subject: | adding new configuration parameter |
Changing cache_size configuration parameter keeps default page size
while setting number of pages accordingly.
To change page size as well a new config parameter could be added:
page_size.
It's enough to change line 131
grep { exists $cfg->{$_} } qw/init_file cache_size unlink_on_exit/
to
grep { exists $cfg->{$_} } qw/init_file cache_size page_size
unlink_on_exit/
Radek