1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

logging_ok:

Logging to logging@openlogging.org accepted
innodb.result, innodb.test, set_var.cc, mysqld.cc:
  change variable innodb_free_tickets_to_enter to innodb_concurrency_tickets
This commit is contained in:
vtkachenko@mail.mysql.com
2005-01-12 20:55:06 +01:00
parent faeac11865
commit 9f640bbad9
5 changed files with 25 additions and 24 deletions

View File

@@ -1745,21 +1745,21 @@ set global innodb_thread_concurrency=16;
show variables like "innodb_thread_concurrency";
Variable_name Value
innodb_thread_concurrency 16
show variables like "innodb_free_tickets_to_enter";
show variables like "innodb_concurrency_tickets";
Variable_name Value
innodb_free_tickets_to_enter 500
set global innodb_free_tickets_to_enter=1000;
show variables like "innodb_free_tickets_to_enter";
innodb_concurrency_tickets 500
set global innodb_concurrency_tickets=1000;
show variables like "innodb_concurrency_tickets";
Variable_name Value
innodb_free_tickets_to_enter 1000
set global innodb_free_tickets_to_enter=0;
show variables like "innodb_free_tickets_to_enter";
innodb_concurrency_tickets 1000
set global innodb_concurrency_tickets=0;
show variables like "innodb_concurrency_tickets";
Variable_name Value
innodb_free_tickets_to_enter 1
set global innodb_free_tickets_to_enter=500;
show variables like "innodb_free_tickets_to_enter";
innodb_concurrency_tickets 1
set global innodb_concurrency_tickets=500;
show variables like "innodb_concurrency_tickets";
Variable_name Value
innodb_free_tickets_to_enter 500
innodb_concurrency_tickets 500
show variables like "innodb_thread_sleep_delay";
Variable_name Value
innodb_thread_sleep_delay 10000