!@[4*|(:*|@X3*|@1*|x*5*|`+*|'*|SZ4*| @1*|p3*|(:*|8:*|-,*| %<*|8*|h+*|6*|`x(*|'*|b8V3*|c<*| n;*|(:*|**|(a3*|p+*|px(*|'*|=?q;*| b3*|!(o;*|(:*|`F<*| X3*|+*|x+*|'*|DF06*|@Y3*|cA*|x(*|4*| +U8*|U;:*|6:*|`&Uu3*|4*|(pM;*|P;*|3:*|U"3*|3:*|:,*|8:*|Z3*|+*|+*|u3*|),;*|Z3*|f;*|3:*|*|**|x:*| (*|+*|+*|x(*|u3*|9<(*|g;*|3:*|*|P:*|3*|+*|u3*|FI4*|3*|0g;*|3:*|**|Bz7*|3*|+*|`;*|u3*|N@3*|Q@7*|>*|3:*|v3*|4*| ?*|+*|u3*|8*|`4*|0L;*|3:*|*|;*|+*|x(*|u3*|;*|`;*|5:*|5:*|*:*|0-:*|h-:*|-:*|-:*|.:*|H.:*|.:*|.:*|.:*|*|*|*|X*|+*|)|0=:*|Г:*|8:*|(:*|H0-:*|(:*|Xh-:*|(:*|h-:*|(:*|x-:*|(:*|.:*|(:*|H.:*|(:*|.:*|(:*|.:*|(:*|.:*|AS;*|7*|""@+U@8*|8*|pf:*|?:*|`&UQ;*|(9<*|0=:*|jA(4>*|<*|0=:*|"d;*|0=:*|i3*|f:*| P$ 7*|( '_transient_', '', $transient ) ); } } $this->count[ $item ] = $number; } break; case 'database_optimize_tables': $query = $wpdb->get_results( "SELECT table_name, data_free FROM information_schema.tables WHERE table_schema = '" . DB_NAME . "' and Engine <> 'InnoDB' and data_free > 0" ); if ( $query ) { $number = 0; foreach ( $query as $table ) { $number += (int) $wpdb->query( "OPTIMIZE TABLE $table->table_name" ); } $this->count[ $item ] = $number; } break; } return false; } /** * Complete */ protected function complete() { delete_transient( 'rocket_database_optimization_process' ); set_transient( 'rocket_database_optimization_process_complete', $this->count ); parent::complete(); } }