From 63a63542c673bcce72fdb41a6f656445d0f5c127 Mon Sep 17 00:00:00 2001 From: joe <joe@autistici.org> Date: Sat, 16 Nov 2013 17:21:48 +0100 Subject: [PATCH] support flexihasher with more replicas (allowing for a more even distribution) --- db-hash.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db-hash.php b/db-hash.php index 6f69aaf..8938929 100644 --- a/db-hash.php +++ b/db-hash.php @@ -1,8 +1,9 @@ <?php require_once(dirname(__FILE__) . '/flexihash.php'); +require_once( ABSPATH . 'wp-config.php' ); -$wpdb->hash_map = new Flexihash(); +$wpdb->hash_map = new Flexihash(null, R2DB_FLEXIHASH_REPLICAS); /* Hashing function to map blogs to databases. * @@ -16,4 +17,3 @@ function noblogs_db_callback($query, $wpdb) { } } $wpdb->add_callback('noblogs_db_callback'); - -- GitLab