The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Google::SafeBrowsing3::DBI - Base class for all DBI-based back-end storage for the Google Safe Browsing v3 database

SYNOPSIS

Net::Google::SafeBrowsing3::DBI cannot be used directly. Instead, use a class inheriting Net::Google::SafeBrowsing3::DBI, like Net::Google::SafeBrowsing3::MySQL.

  use Net::Google::SafeBrowsing3::MySQL;

  my $storage = Net::Google::SafeBrowsing3::MySQL->new(host => '127.0.0.1', database => 'GoogleSafeBrowsingv3');
  ...
  $storage->close();

DESCRIPTION

This is a base implementation of Net::Google::SafeBrowsing3::Storage using DBI.

CONSTRUCTOR

new()

This method should be overwritten.

Arguments

keep_all

Optional. Set to 1 to keep old information (such as expiring full hashes) in the database. 0 (delete) by default.

PUBLIC FUNCTIONS

close()

Cleanup old full hashes, and close the connection to the database.

  $storage->close();

CHANGELOG

0.3

Fix deletion of add and sub chunks

0.2

Fix duplicate update records. Speed up deletion of chunks.

0.1

Initial release.

SEE ALSO

See Net::Google::SafeBrowsing3 for handling Google Safe Browsing v3.

See Net::Google::SafeBrowsing3::Storage for the list of public functions.

See Net::Google::SafeBrowsing3::Sqlite for a back-end using Sqlite.

Google Safe Browsing v3 API: https://developers.google.com/safe-browsing/developers_guide_v3

AUTHOR

Julien Sobrier, <julien@sobrier.net>

COPYRIGHT AND LICENSE

Copyright (C) 2015 by Julien Sobrier

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.