version 1.2, 2025/06/28 00:33:32
|
version 1.3, 2025/06/30 02:18:44
|
Line 9
|
Line 9
|
# Licensed AGPL-3.0 |
# Licensed AGPL-3.0 |
# |
# |
# $Log$ |
# $Log$ |
|
# Revision 1.3 2025/06/30 02:18:44 snw |
|
# Updates |
|
# |
# Revision 1.2 2025/06/28 00:33:32 snw |
# Revision 1.2 2025/06/28 00:33:32 snw |
# Update locking |
# Update locking |
# |
# |
Line 50 my $sth = $dbh->prepare("DELETE crawl_qu
|
Line 53 my $sth = $dbh->prepare("DELETE crawl_qu
|
$sth->execute(); |
$sth->execute(); |
print "[OK]\n"; |
print "[OK]\n"; |
|
|
|
print "pandia: removing blacklisted items from index..."; |
|
$sth = $dbh->prepare("DELETE url_fulltext FROM url_fulltext JOIN blacklist ON url_fulltext.url_domain=blacklist.url_domain"); |
|
$sth->execute(); |
|
print "[OK]\n"; |
|
|
|
|