You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/lib/global_variables.cpp

9 lines
234 B

#include "proxysql.h"
// configure the number of threads as number of cores times 2
void pre_variable_mysql_threads(global_variable_entry_t *gve) {
int rc=sysconf(_SC_NPROCESSORS_ONLN)*2;
assert(rc>0);
*(int *)gve->arg_data=rc;
}