History log of /PHP-8.2/ext/dba/tests/bug78808.phpt (Results 1 – 4 of 4)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# eddab740 28-Jul-2022 George Peter Banyard

Improve DBA test suite (#8904)

Generalises tests for all the different drivers.
Run the general test for the various drivers.

This allows support for parallel testing as the tes

Improve DBA test suite (#8904)

Generalises tests for all the different drivers.
Run the general test for the various drivers.

This allows support for parallel testing as the tests now do not rely on the same DB file.

show more ...


# b5a14e6c 11-Jun-2021 Nikita Popov

Port skipif.inc files to EXTENSIONS


# c11b52de 28-May-2021 Christoph M. Becker

Speed up ext/dba/tests/bug78808.phpt

This tests takes about 2 minutes on AppVeyor CI, what is super slow.
The problem is that we're doing 50,000 inserts of small keys and values
inst

Speed up ext/dba/tests/bug78808.phpt

This tests takes about 2 minutes on AppVeyor CI, what is super slow.
The problem is that we're doing 50,000 inserts of small keys and values
instead of only few inserts with large values, what basically has the
same effect regarding the mmap size.

Closes GH-7073.

show more ...


Revision tags: php-7.3.13RC1, php-7.2.26RC1, php-7.4.0, php-7.2.25, php-7.3.12
# c05a069a 14-Nov-2019 Christoph M. Becker

Fix #78808: [LMDB] MDB_MAP_FULL: Environment mapsize limit reached

We implement support for a fifth parameter, which allows to specify the
mapsize. The parameter defaults to zero, in wh

Fix #78808: [LMDB] MDB_MAP_FULL: Environment mapsize limit reached

We implement support for a fifth parameter, which allows to specify the
mapsize. The parameter defaults to zero, in which case the compiled in
default mapsize (usually 1048576) will be used. The mapsize should be
a multiple of the page size of the OS.

show more ...