8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00

Increased a default size of the lock table, after discussion with Nickolay.

This commit is contained in:
dimitr 2003-10-03 10:38:06 +00:00
parent 0d5a0d9d97
commit 00f41da60e

View File

@ -64,7 +64,11 @@ const ConfigImpl::ConfigEntry ConfigImpl::entries[] =
#endif
{TYPE_INTEGER, "ConnectionTimeout", (ConfigValue) 180}, // seconds
{TYPE_INTEGER, "DummyPacketInterval", (ConfigValue) 0}, // seconds
#if defined(WIN_NT) && !defined(SUPERSERVER)
{TYPE_INTEGER, "LockMemSize", (ConfigValue) 1048576}, // bytes
#else
{TYPE_INTEGER, "LockMemSize", (ConfigValue) 262144}, // bytes
#endif
#ifdef SINIXZ
{TYPE_INTEGER, "LockSemCount", (ConfigValue) 25}, // semaphores
#else