Set minimum table_open_cache and table_default_cache to 400

This commit is contained in:
Mikael Ronstrom 2009-07-02 17:53:53 +02:00
parent c75a265381
commit 26b1b214c0

View File

@ -264,7 +264,7 @@ protected:
#define MAX_ACCEPT_RETRY 10 // Test accept this many times #define MAX_ACCEPT_RETRY 10 // Test accept this many times
#define MAX_FIELDS_BEFORE_HASH 32 #define MAX_FIELDS_BEFORE_HASH 32
#define USER_VARS_HASH_SIZE 16 #define USER_VARS_HASH_SIZE 16
#define TABLE_OPEN_CACHE_MIN 64 #define TABLE_OPEN_CACHE_MIN 400
#define TABLE_OPEN_CACHE_DEFAULT 400 #define TABLE_OPEN_CACHE_DEFAULT 400
#define TABLE_DEF_CACHE_DEFAULT 400 #define TABLE_DEF_CACHE_DEFAULT 400
/** /**
@ -280,7 +280,7 @@ protected:
for now the only solution is to ensure that the table definition for now the only solution is to ensure that the table definition
cache can contain at least all tables of a given statement. cache can contain at least all tables of a given statement.
*/ */
#define TABLE_DEF_CACHE_MIN 256 #define TABLE_DEF_CACHE_MIN 400
/* /*
Stack reservation. Stack reservation.