This will fix #199 and help on loading times for the website in case caches are empty. Caches are pre-filled by a cron so the website only does it as a fall back. Check Ticket for details.
42 lines
1.4 KiB
PHP
Executable File
42 lines
1.4 KiB
PHP
Executable File
#!/usr/bin/php
|
|
<?php
|
|
|
|
/*
|
|
|
|
Copyright:: 2013, Sebastian Grewe
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
// Include all settings and classes
|
|
require_once('shared.inc.php');
|
|
|
|
// Fetch all cachable values but disable fetching from cache
|
|
$statistics->setGetCache(false);
|
|
|
|
// Since fetching from cache is disabled, overwrite our stats
|
|
if (!$statistics->getRoundShares())
|
|
verbose("Unable to fetch and store current round shares\n");
|
|
if (!$statistics->getTopContributors('shares'))
|
|
verbose("Unable to fetch and store top share contributors\n");
|
|
if (!$statistics->getTopContributors('hashes'))
|
|
verbose("Unable to fetch and store top hashrate contributors\n");
|
|
if (!$statistics->getCurrentHashrate())
|
|
verbose("Unable to fetch and store pool hashrate\n");
|
|
// Admin specific statistics, we cache the global query due to slowness
|
|
if (!$statistics->getAllUserStats('%'))
|
|
verbose("Unable to fetch and store admin panel full user list\n");
|
|
|
|
?>
|