BioTorrents.de’s version of Gazelle
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.

sphinx_min_max_matches.php 450B

12345678910111213
  1. <?php
  2. #declare(strict_types=1);
  3. $SphQL = new SphinxqlQuery();
  4. $SphQL->where_match('_all', 'fake', false);
  5. $SphQL->select('id')->from('torrents, delta')->limit(0, 0, 10000);
  6. $TTorrents = $SphQL->query()->get_meta('total_found');
  7. $SphQL->select('groupid')->group_by('groupid')->from('torrents, delta')->limit(0, 0, 10000);
  8. $TGroups = $SphQL->query()->get_meta('total_found');
  9. $Cache->cache_value('sphinx_min_max_matches', 2*($TTorrents-$TGroups));